pub struct GSetDelta<T: Ord + Clone> {
pub elements: BTreeSet<T>,
}Expand description
Delta for GSet: elements present in self but not in other.
Fields§
§elements: BTreeSet<T>Elements to add.
Trait Implementations§
impl<T: Eq + Ord + Clone> Eq for GSetDelta<T>
impl<T: Ord + Clone> StructuralPartialEq for GSetDelta<T>
Auto Trait Implementations§
impl<T> Freeze for GSetDelta<T>
impl<T> RefUnwindSafe for GSetDelta<T>where
T: RefUnwindSafe,
impl<T> Send for GSetDelta<T>where
T: Send,
impl<T> Sync for GSetDelta<T>where
T: Sync,
impl<T> Unpin for GSetDelta<T>
impl<T> UnsafeUnpin for GSetDelta<T>
impl<T> UnwindSafe for GSetDelta<T>where
T: RefUnwindSafe,
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