pub struct SecurityKey {
pub id: String,
pub user_id: String,
pub key_id: String,
pub public_key: String,
pub counter: u64,
pub name: String,
}Fields§
§id: String§user_id: String§key_id: String§public_key: String§counter: u64§name: StringTrait Implementations§
Source§impl Clone for SecurityKey
impl Clone for SecurityKey
Source§fn clone(&self) -> SecurityKey
fn clone(&self) -> SecurityKey
Returns a duplicate 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 Debug for SecurityKey
impl Debug for SecurityKey
Source§impl Default for SecurityKey
impl Default for SecurityKey
Source§impl<'de> Deserialize<'de> for SecurityKey
impl<'de> Deserialize<'de> for SecurityKey
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 SecurityKey
impl PartialEq for SecurityKey
Source§impl Serialize for SecurityKey
impl Serialize for SecurityKey
impl Eq for SecurityKey
impl StructuralPartialEq for SecurityKey
Auto Trait Implementations§
impl Freeze for SecurityKey
impl RefUnwindSafe for SecurityKey
impl Send for SecurityKey
impl Sync for SecurityKey
impl Unpin for SecurityKey
impl UnwindSafe for SecurityKey
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