[][src]Struct vec_collections::VecSeq

pub struct VecSeq<T>(_);

Trait Implementations

impl<T> Into<Vec<T>> for VecSeq<T>[src]

impl<T> From<Vec<T>> for VecSeq<T>[src]

impl<T: Clone> Clone for VecSeq<T>[src]

impl<T: Eq> Eq for VecSeq<T>[src]

impl<T: Ord> Ord for VecSeq<T>[src]

impl<T: PartialEq> PartialEq<VecSeq<T>> for VecSeq<T>[src]

impl<T: PartialOrd> PartialOrd<VecSeq<T>> for VecSeq<T>[src]

impl<T: Display> Display for VecSeq<T>[src]

impl<T: Debug> Debug for VecSeq<T>[src]

impl<'a, 'b, T: Clone + Eq> Add<&'b VecSeq<T>> for &'a VecSeq<T>[src]

type Output = VecSeq<T>

The resulting type after applying the + operator.

impl<'_, T: Clone + Eq> AddAssign<&'_ VecSeq<T>> for VecSeq<T>[src]

impl<T: Hash> Hash for VecSeq<T>[src]

impl<T> StructuralPartialEq for VecSeq<T>[src]

impl<T> StructuralEq for VecSeq<T>[src]

impl<T: Clone> AbstractMagma<Additive> for VecSeq<T>[src]

impl<T: Clone + Eq> AbstractSemigroup<Additive> for VecSeq<T>[src]

impl<T: Clone + Eq> AbstractMonoid<Additive> for VecSeq<T>[src]

impl<T> Identity<Additive> for VecSeq<T>[src]

Auto Trait Implementations

impl<T> Send for VecSeq<T> where
    T: Send

impl<T> Sync for VecSeq<T> where
    T: Sync

impl<T> Unpin for VecSeq<T> where
    T: Unpin

impl<T> UnwindSafe for VecSeq<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for VecSeq<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> AdditiveMagma for T where
    T: AbstractMagma<Additive>, 
[src]