pub struct IdentityCredentials {
pub config: Option<Value>,
pub identifiers: Option<Vec<String>>,
pub _type: Option<String>,
}Expand description
IdentityCredentials : Credentials represents a specific credential type
Fields§
§config: Option<Value>§identifiers: Option<Vec<String>>Identifiers represents a list of unique identifiers this credential type matches.
_type: Option<String>and so on.
Implementations§
Source§impl IdentityCredentials
impl IdentityCredentials
Sourcepub fn new() -> IdentityCredentials
pub fn new() -> IdentityCredentials
Credentials represents a specific credential type
Trait Implementations§
Source§impl Clone for IdentityCredentials
impl Clone for IdentityCredentials
Source§fn clone(&self) -> IdentityCredentials
fn clone(&self) -> IdentityCredentials
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 IdentityCredentials
impl Debug for IdentityCredentials
Source§impl<'de> Deserialize<'de> for IdentityCredentials
impl<'de> Deserialize<'de> for IdentityCredentials
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 IdentityCredentials
impl PartialEq for IdentityCredentials
Source§impl Serialize for IdentityCredentials
impl Serialize for IdentityCredentials
impl StructuralPartialEq for IdentityCredentials
Auto Trait Implementations§
impl Freeze for IdentityCredentials
impl RefUnwindSafe for IdentityCredentials
impl Send for IdentityCredentials
impl Sync for IdentityCredentials
impl Unpin for IdentityCredentials
impl UnwindSafe for IdentityCredentials
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