pub struct LinuxDefaultRuntimeAdapterState {
pub attached: bool,
pub worker_running: bool,
pub attach_calls: u64,
pub detach_calls: u64,
pub listener_exits: u64,
pub listener_restarts: u64,
pub listener_failures: u64,
}Fields§
§attached: bool§worker_running: bool§attach_calls: u64§detach_calls: u64§listener_exits: u64§listener_restarts: u64§listener_failures: u64Trait Implementations§
Source§impl Clone for LinuxDefaultRuntimeAdapterState
impl Clone for LinuxDefaultRuntimeAdapterState
Source§fn clone(&self) -> LinuxDefaultRuntimeAdapterState
fn clone(&self) -> LinuxDefaultRuntimeAdapterState
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 moreSource§impl Default for LinuxDefaultRuntimeAdapterState
impl Default for LinuxDefaultRuntimeAdapterState
Source§fn default() -> LinuxDefaultRuntimeAdapterState
fn default() -> LinuxDefaultRuntimeAdapterState
Returns the “default value” for a type. Read more
Source§impl PartialEq for LinuxDefaultRuntimeAdapterState
impl PartialEq for LinuxDefaultRuntimeAdapterState
Source§fn eq(&self, other: &LinuxDefaultRuntimeAdapterState) -> bool
fn eq(&self, other: &LinuxDefaultRuntimeAdapterState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LinuxDefaultRuntimeAdapterState
impl Eq for LinuxDefaultRuntimeAdapterState
impl StructuralPartialEq for LinuxDefaultRuntimeAdapterState
Auto Trait Implementations§
impl Freeze for LinuxDefaultRuntimeAdapterState
impl RefUnwindSafe for LinuxDefaultRuntimeAdapterState
impl Send for LinuxDefaultRuntimeAdapterState
impl Sync for LinuxDefaultRuntimeAdapterState
impl Unpin for LinuxDefaultRuntimeAdapterState
impl UnsafeUnpin for LinuxDefaultRuntimeAdapterState
impl UnwindSafe for LinuxDefaultRuntimeAdapterState
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