pub struct AuthProfileEntry {
pub source: AuthProfileSource,
pub account_id: String,
pub profile_file: Option<String>,
pub auth_file: Option<String>,
pub summary: AuthStatusSummary,
}Fields§
§source: AuthProfileSource§account_id: String§profile_file: Option<String>§auth_file: Option<String>§summary: AuthStatusSummaryTrait Implementations§
Source§impl Clone for AuthProfileEntry
impl Clone for AuthProfileEntry
Source§fn clone(&self) -> AuthProfileEntry
fn clone(&self) -> AuthProfileEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthProfileEntry
impl Debug for AuthProfileEntry
Source§impl PartialEq for AuthProfileEntry
impl PartialEq for AuthProfileEntry
Source§fn eq(&self, other: &AuthProfileEntry) -> bool
fn eq(&self, other: &AuthProfileEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthProfileEntry
impl StructuralPartialEq for AuthProfileEntry
Auto Trait Implementations§
impl Freeze for AuthProfileEntry
impl RefUnwindSafe for AuthProfileEntry
impl Send for AuthProfileEntry
impl Sync for AuthProfileEntry
impl Unpin for AuthProfileEntry
impl UnsafeUnpin for AuthProfileEntry
impl UnwindSafe for AuthProfileEntry
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