pub struct OrdinalSet64<T> { /* private fields */ }Expand description
Set for implementations of Ordinal with a maximum ordinal size of 64.
This is implemented using a single u64 value to store the set of elements.
To store set of arbitrary size, consider using OrdinalSet.
Implementations§
Trait Implementations§
Source§impl<T> Clone for OrdinalSet64<T>
impl<T> Clone for OrdinalSet64<T>
Source§impl<T: Ordinal> Default for OrdinalSet64<T>
impl<T: Ordinal> Default for OrdinalSet64<T>
impl<T: Eq> Eq for OrdinalSet64<T>
Source§impl<T: Ordinal> FromIterator<T> for OrdinalSet64<T>
impl<T: Ordinal> FromIterator<T> for OrdinalSet64<T>
Source§fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Creates a value from an iterator. Read more
Source§impl<T: PartialEq> PartialEq for OrdinalSet64<T>
impl<T: PartialEq> PartialEq for OrdinalSet64<T>
Source§fn eq(&self, other: &OrdinalSet64<T>) -> bool
fn eq(&self, other: &OrdinalSet64<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for OrdinalSet64<T>
Auto Trait Implementations§
impl<T> Freeze for OrdinalSet64<T>
impl<T> RefUnwindSafe for OrdinalSet64<T>where
T: RefUnwindSafe,
impl<T> Send for OrdinalSet64<T>where
T: Send,
impl<T> Sync for OrdinalSet64<T>where
T: Sync,
impl<T> Unpin for OrdinalSet64<T>where
T: Unpin,
impl<T> UnsafeUnpin for OrdinalSet64<T>
impl<T> UnwindSafe for OrdinalSet64<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