Struct swiss_army_knife::VariablySized[][src]

pub struct VariablySized<T>(_, _);

Wrapper for variably sized data.

Implementations

impl<T> VariablySized<T>[src]

pub fn allocate_zeroed(size: usize) -> Self[src]

Allocate zeroed.

pub fn zero(&mut self)[src]

Zero (uninitialize).

Trait Implementations

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

impl<T> Deref for VariablySized<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for VariablySized<T>[src]

impl<T> Drop for VariablySized<T>[src]

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

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

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

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

Auto Trait Implementations

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

impl<T> !Send for VariablySized<T>

impl<T> !Sync for VariablySized<T>

impl<T> Unpin for VariablySized<T>

impl<T> UnwindSafe for VariablySized<T> where
    T: RefUnwindSafe

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<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.