pub struct SecurityKey {
pub assignments: Vec<SecurityKeyAssignments>,
pub id: i64,
pub last_used: i64,
pub name: String,
pub timestamp: i64,
pub type: SecurityKeyType,
}Fields§
§assignments: Vec<SecurityKeyAssignments>§id: i64§last_used: i64§name: String§timestamp: i64§type: SecurityKeyTypeTrait 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§fn default() -> SecurityKey
fn default() -> SecurityKey
Returns the “default value” for a type. Read more
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 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