[][src]Struct stack::SmallDST

pub struct SmallDST<T: ?Sized, A: Vector<Item = usize> = ArrayVec<[usize; 9]>> { /* fields omitted */ }

Implementations

impl<T: ?Sized, A: Vector<Item = usize>> SmallDST<T, A>[src]

pub unsafe fn new_ref<U>(v: &T, u: &U) -> Self[src]

pub unsafe fn data(&self) -> &A[src]

Trait Implementations

impl<T: ?Sized + Clone, A: Vector<Item = usize>> Clone for SmallDST<T, A>[src]

impl<T: ?Sized + Debug, A: Vector<Item = usize>> Debug for SmallDST<T, A>[src]

impl<T: ?Sized, A: Vector<Item = usize>> Deref for SmallDST<T, A>[src]

type Target = T

The resulting type after dereferencing.

impl<T: ?Sized, A: Vector<Item = usize>> DerefMut for SmallDST<T, A>[src]

impl<T: ?Sized, A: Vector<Item = usize>> Drop for SmallDST<T, A>[src]

impl<T: Sized, A: Vector<Item = usize>> From<T> for SmallDST<T, A>[src]

Auto Trait Implementations

impl<T: ?Sized, A> RefUnwindSafe for SmallDST<T, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe

impl<T: ?Sized, A> Send for SmallDST<T, A> where
    A: Send,
    T: Send

impl<T: ?Sized, A> Sync for SmallDST<T, A> where
    A: Sync,
    T: Sync

impl<T: ?Sized, A> Unpin for SmallDST<T, A> where
    A: Unpin,
    T: Unpin

impl<T: ?Sized, A> UnwindSafe for SmallDST<T, A> where
    A: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.