pub struct IsolationStats {
pub domains_active: usize,
pub violations_detected: usize,
pub boundary_crosses: u64,
pub isolation_enabled: bool,
}
Expand description
Thread isolation statistics.
Fields§
§domains_active: usize
§violations_detected: usize
§boundary_crosses: u64
§isolation_enabled: bool
Trait Implementations§
Source§impl Clone for IsolationStats
impl Clone for IsolationStats
Source§fn clone(&self) -> IsolationStats
fn clone(&self) -> IsolationStats
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 moreAuto Trait Implementations§
impl Freeze for IsolationStats
impl RefUnwindSafe for IsolationStats
impl Send for IsolationStats
impl Sync for IsolationStats
impl Unpin for IsolationStats
impl UnwindSafe for IsolationStats
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