pub struct ExceptionDrift {
pub local: usize,
pub remote: usize,
pub changes: Vec<ListChange>,
pub dangling: Vec<DanglingPointer>,
}Expand description
Exception-list drift, mirroring the rules block of DiffReport.
Fields§
§local: usize§remote: usize§changes: Vec<ListChange>§dangling: Vec<DanglingPointer>Implementations§
Trait Implementations§
Source§impl Clone for ExceptionDrift
impl Clone for ExceptionDrift
Source§fn clone(&self) -> ExceptionDrift
fn clone(&self) -> ExceptionDrift
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 moreSource§impl Debug for ExceptionDrift
impl Debug for ExceptionDrift
Source§impl PartialEq for ExceptionDrift
impl PartialEq for ExceptionDrift
Source§impl Serialize for ExceptionDrift
impl Serialize for ExceptionDrift
impl StructuralPartialEq for ExceptionDrift
Auto Trait Implementations§
impl Freeze for ExceptionDrift
impl RefUnwindSafe for ExceptionDrift
impl Send for ExceptionDrift
impl Sync for ExceptionDrift
impl Unpin for ExceptionDrift
impl UnsafeUnpin for ExceptionDrift
impl UnwindSafe for ExceptionDrift
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