pub struct Removed<T> {
pub value: T,
}Expand description
A value that was removed from a structural diff.
Fields§
§value: TRemoved value.
Trait Implementations§
impl<T: Eq> Eq for Removed<T>
Source§impl<T: PartialEq> PartialEq for Removed<T>
impl<T: PartialEq> PartialEq for Removed<T>
impl<T: PartialEq> StructuralPartialEq for Removed<T>
Auto Trait Implementations§
impl<T> Freeze for Removed<T>where
T: Freeze,
impl<T> RefUnwindSafe for Removed<T>where
T: RefUnwindSafe,
impl<T> Send for Removed<T>where
T: Send,
impl<T> Sync for Removed<T>where
T: Sync,
impl<T> Unpin for Removed<T>where
T: Unpin,
impl<T> UnsafeUnpin for Removed<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Removed<T>where
T: UnwindSafe,
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