pub struct ContextIsolationReport {
pub active_context: &'static str,
pub inactive_context: &'static str,
pub active_before: ContextAccumulatorSnapshot,
pub active_after: ContextAccumulatorSnapshot,
pub inactive_before: ContextAccumulatorSnapshot,
pub inactive_after: ContextAccumulatorSnapshot,
}Expand description
Report for a per-context update.
Fields§
§active_context: &'static str§inactive_context: &'static str§active_before: ContextAccumulatorSnapshot§active_after: ContextAccumulatorSnapshot§inactive_before: ContextAccumulatorSnapshot§inactive_after: ContextAccumulatorSnapshotTrait Implementations§
Source§impl Clone for ContextIsolationReport
impl Clone for ContextIsolationReport
Source§fn clone(&self) -> ContextIsolationReport
fn clone(&self) -> ContextIsolationReport
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 moreimpl Copy for ContextIsolationReport
Source§impl Debug for ContextIsolationReport
impl Debug for ContextIsolationReport
Source§impl PartialEq for ContextIsolationReport
impl PartialEq for ContextIsolationReport
Source§fn eq(&self, other: &ContextIsolationReport) -> bool
fn eq(&self, other: &ContextIsolationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContextIsolationReport
Auto Trait Implementations§
impl Freeze for ContextIsolationReport
impl RefUnwindSafe for ContextIsolationReport
impl Send for ContextIsolationReport
impl Sync for ContextIsolationReport
impl Unpin for ContextIsolationReport
impl UnsafeUnpin for ContextIsolationReport
impl UnwindSafe for ContextIsolationReport
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