pub struct ClientConfigReport {
pub client: String,
pub detected: bool,
pub installed: bool,
pub status: String,
pub notes: Vec<String>,
}Expand description
Per-client auto-configuration outcome.
Fields§
§client: String§detected: bool§installed: bool§status: String§notes: Vec<String>Trait Implementations§
Source§impl Clone for ClientConfigReport
impl Clone for ClientConfigReport
Source§fn clone(&self) -> ClientConfigReport
fn clone(&self) -> ClientConfigReport
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 ClientConfigReport
impl Debug for ClientConfigReport
Auto Trait Implementations§
impl Freeze for ClientConfigReport
impl RefUnwindSafe for ClientConfigReport
impl Send for ClientConfigReport
impl Sync for ClientConfigReport
impl Unpin for ClientConfigReport
impl UnsafeUnpin for ClientConfigReport
impl UnwindSafe for ClientConfigReport
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