pub struct AlternativeSecurityId {
pub _type: i32,
pub identity_provider: String,
pub key: Vec<u8>,
}
Fields§
§_type: i32
§identity_provider: String
§key: Vec<u8>
Trait Implementations§
Source§impl Clone for AlternativeSecurityId
impl Clone for AlternativeSecurityId
Source§fn clone(&self) -> AlternativeSecurityId
fn clone(&self) -> AlternativeSecurityId
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 AlternativeSecurityId
impl Debug for AlternativeSecurityId
Source§impl<'de> Deserialize<'de> for AlternativeSecurityId
impl<'de> Deserialize<'de> for AlternativeSecurityId
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 AlternativeSecurityId
impl PartialEq for AlternativeSecurityId
Source§impl Serialize for AlternativeSecurityId
impl Serialize for AlternativeSecurityId
impl Eq for AlternativeSecurityId
impl StructuralPartialEq for AlternativeSecurityId
Auto Trait Implementations§
impl Freeze for AlternativeSecurityId
impl RefUnwindSafe for AlternativeSecurityId
impl Send for AlternativeSecurityId
impl Sync for AlternativeSecurityId
impl Unpin for AlternativeSecurityId
impl UnwindSafe for AlternativeSecurityId
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