pub struct IdentityWithCredentials {
pub oidc: Option<Box<IdentityWithCredentialsOidc>>,
pub password: Option<Box<IdentityWithCredentialsPassword>>,
}Expand description
IdentityWithCredentials : Create Identity and Import Credentials
Fields§
§oidc: Option<Box<IdentityWithCredentialsOidc>>§password: Option<Box<IdentityWithCredentialsPassword>>Implementations§
source§impl IdentityWithCredentials
impl IdentityWithCredentials
sourcepub fn new() -> IdentityWithCredentials
pub fn new() -> IdentityWithCredentials
Create Identity and Import Credentials
Trait Implementations§
source§impl Clone for IdentityWithCredentials
impl Clone for IdentityWithCredentials
source§fn clone(&self) -> IdentityWithCredentials
fn clone(&self) -> IdentityWithCredentials
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 Debug for IdentityWithCredentials
impl Debug for IdentityWithCredentials
source§impl Default for IdentityWithCredentials
impl Default for IdentityWithCredentials
source§impl<'de> Deserialize<'de> for IdentityWithCredentials
impl<'de> Deserialize<'de> for IdentityWithCredentials
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 IdentityWithCredentials
impl PartialEq for IdentityWithCredentials
source§fn eq(&self, other: &IdentityWithCredentials) -> bool
fn eq(&self, other: &IdentityWithCredentials) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IdentityWithCredentials
impl Serialize for IdentityWithCredentials
impl StructuralPartialEq for IdentityWithCredentials
Auto Trait Implementations§
impl RefUnwindSafe for IdentityWithCredentials
impl Send for IdentityWithCredentials
impl Sync for IdentityWithCredentials
impl Unpin for IdentityWithCredentials
impl UnwindSafe for IdentityWithCredentials
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