pub struct AdapterHealth {
pub name: String,
pub status: SourceStatus,
pub root: Option<PathBuf>,
pub sessions: usize,
pub capabilities: Capabilities,
}Expand description
One adapter’s health.
Fields§
§name: String§status: SourceStatus§root: Option<PathBuf>Where warden looked, when it knows.
sessions: usize§capabilities: CapabilitiesTrait Implementations§
Source§impl Clone for AdapterHealth
impl Clone for AdapterHealth
Source§fn clone(&self) -> AdapterHealth
fn clone(&self) -> AdapterHealth
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 moreAuto Trait Implementations§
impl Freeze for AdapterHealth
impl RefUnwindSafe for AdapterHealth
impl Send for AdapterHealth
impl Sync for AdapterHealth
impl Unpin for AdapterHealth
impl UnsafeUnpin for AdapterHealth
impl UnwindSafe for AdapterHealth
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