pub struct CredentialStatus {
pub id: String,
pub display_name: String,
pub available: bool,
pub supports_login: bool,
}Expand description
Status snapshot of a single resolver in the chain.
Fields§
§id: String§display_name: String§available: bool§supports_login: boolTrait Implementations§
Source§impl Clone for CredentialStatus
impl Clone for CredentialStatus
Source§fn clone(&self) -> CredentialStatus
fn clone(&self) -> CredentialStatus
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 moreAuto Trait Implementations§
impl Freeze for CredentialStatus
impl RefUnwindSafe for CredentialStatus
impl Send for CredentialStatus
impl Sync for CredentialStatus
impl Unpin for CredentialStatus
impl UnsafeUnpin for CredentialStatus
impl UnwindSafe for CredentialStatus
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