[−][src]Struct vec_collections::TotalVecSet
Methods
impl<T> TotalVecSet<T>[src]
pub fn is_empty(&self) -> bool[src]
pub fn is_all(&self) -> bool[src]
pub fn empty() -> Self[src]
pub fn all() -> Self[src]
pub fn shrink_to_fit(&mut self)[src]
impl<T: Ord> TotalVecSet<T>[src]
pub fn contains(&self, value: &T) -> bool[src]
pub fn insert(&mut self, that: T)[src]
pub fn is_superset(&self, that: &Self) -> bool[src]
pub fn is_subset(&self, that: &Self) -> bool[src]
pub fn is_disjoint(&self, that: &Self) -> bool[src]
impl<T: Ord + Clone> TotalVecSet<T>[src]
Trait Implementations
impl<T> From<VecSet<T>> for TotalVecSet<T>[src]
impl<T: Clone> Clone for TotalVecSet<T>[src]
fn clone(&self) -> TotalVecSet<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T: Eq> Eq for TotalVecSet<T>[src]
impl<T: PartialEq> PartialEq<TotalVecSet<T>> for TotalVecSet<T>[src]
fn eq(&self, other: &TotalVecSet<T>) -> bool[src]
fn ne(&self, other: &TotalVecSet<T>) -> bool[src]
impl<T: Debug> Debug for TotalVecSet<T>[src]
impl<'_, T: Ord + Clone> Sub<&'_ TotalVecSet<T>> for &'_ TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the - operator.
fn sub(self, that: Self) -> Self::Output[src]
impl<T: Ord> SubAssign<TotalVecSet<T>> for TotalVecSet<T>[src]
fn sub_assign(&mut self, that: Self)[src]
impl<'_, T: Ord + Clone> Not for &'_ TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
impl<T: Ord> Not for TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
impl<'_, T: Ord + Clone> BitAnd<&'_ TotalVecSet<T>> for &'_ TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the & operator.
fn bitand(self, that: Self) -> Self::Output[src]
impl<'_, T: Ord + Clone> BitOr<&'_ TotalVecSet<T>> for &'_ TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the | operator.
fn bitor(self, that: Self) -> Self::Output[src]
impl<'_, T: Ord + Clone> BitXor<&'_ TotalVecSet<T>> for &'_ TotalVecSet<T>[src]
type Output = TotalVecSet<T>
The resulting type after applying the ^ operator.
fn bitxor(self, that: Self) -> Self::Output[src]
impl<T: Ord> BitAndAssign<TotalVecSet<T>> for TotalVecSet<T>[src]
fn bitand_assign(&mut self, that: Self)[src]
impl<T: Ord> BitOrAssign<TotalVecSet<T>> for TotalVecSet<T>[src]
fn bitor_assign(&mut self, that: Self)[src]
impl<T: Ord> BitXorAssign<TotalVecSet<T>> for TotalVecSet<T>[src]
fn bitxor_assign(&mut self, that: Self)[src]
impl<T> StructuralPartialEq for TotalVecSet<T>[src]
impl<T> StructuralEq for TotalVecSet<T>[src]
Auto Trait Implementations
impl<T> Send for TotalVecSet<T> where
T: Send,
T: Send,
impl<T> Sync for TotalVecSet<T> where
T: Sync,
T: Sync,
impl<T> Unpin for TotalVecSet<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for TotalVecSet<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for TotalVecSet<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>, [src]
SS: SubsetOf<SP>,