pub struct WebAuthnLoginRotateKeyRequestModel {
pub id: Uuid,
pub encrypted_user_key: String,
pub encrypted_public_key: String,
}
Fields§
§id: Uuid
§encrypted_user_key: String
§encrypted_public_key: String
Implementations§
Trait Implementations§
Source§impl Clone for WebAuthnLoginRotateKeyRequestModel
impl Clone for WebAuthnLoginRotateKeyRequestModel
Source§fn clone(&self) -> WebAuthnLoginRotateKeyRequestModel
fn clone(&self) -> WebAuthnLoginRotateKeyRequestModel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for WebAuthnLoginRotateKeyRequestModel
impl Default for WebAuthnLoginRotateKeyRequestModel
Source§fn default() -> WebAuthnLoginRotateKeyRequestModel
fn default() -> WebAuthnLoginRotateKeyRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebAuthnLoginRotateKeyRequestModel
impl<'de> Deserialize<'de> for WebAuthnLoginRotateKeyRequestModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WebAuthnLoginRotateKeyRequestModel
impl PartialEq for WebAuthnLoginRotateKeyRequestModel
Source§fn eq(&self, other: &WebAuthnLoginRotateKeyRequestModel) -> bool
fn eq(&self, other: &WebAuthnLoginRotateKeyRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebAuthnLoginRotateKeyRequestModel
Auto Trait Implementations§
impl Freeze for WebAuthnLoginRotateKeyRequestModel
impl RefUnwindSafe for WebAuthnLoginRotateKeyRequestModel
impl Send for WebAuthnLoginRotateKeyRequestModel
impl Sync for WebAuthnLoginRotateKeyRequestModel
impl Unpin for WebAuthnLoginRotateKeyRequestModel
impl UnwindSafe for WebAuthnLoginRotateKeyRequestModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more