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