pub struct AuthProfileListReport {
pub auth_file: String,
pub store_dir: String,
pub current: Option<AuthProfileEntry>,
pub stored: Vec<AuthProfileEntry>,
pub skipped_stored: Vec<AuthProfileReadError>,
}Fields§
§auth_file: String§store_dir: String§current: Option<AuthProfileEntry>§stored: Vec<AuthProfileEntry>§skipped_stored: Vec<AuthProfileReadError>Trait Implementations§
Source§impl Clone for AuthProfileListReport
impl Clone for AuthProfileListReport
Source§fn clone(&self) -> AuthProfileListReport
fn clone(&self) -> AuthProfileListReport
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 AuthProfileListReport
impl Debug for AuthProfileListReport
Source§impl PartialEq for AuthProfileListReport
impl PartialEq for AuthProfileListReport
Source§fn eq(&self, other: &AuthProfileListReport) -> bool
fn eq(&self, other: &AuthProfileListReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthProfileListReport
impl StructuralPartialEq for AuthProfileListReport
Auto Trait Implementations§
impl Freeze for AuthProfileListReport
impl RefUnwindSafe for AuthProfileListReport
impl Send for AuthProfileListReport
impl Sync for AuthProfileListReport
impl Unpin for AuthProfileListReport
impl UnsafeUnpin for AuthProfileListReport
impl UnwindSafe for AuthProfileListReport
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