[][src]Struct bm_le::CompactRef

pub struct CompactRef<'a, T>(pub &'a T);

Indicate that the current value should be serialized and deserialized in Compact format. Reference form.

Trait Implementations

impl<'a, T, L: ArrayLength<T>, DB> IntoTree<DB> for CompactRef<'a, GenericArray<T, L>> where
    DB: Backend<Intermediate = Intermediate, End = End>,
    ElementalFixedVecRef<'b, T>: IntoCompactVectorTree<DB>, 
[src]

impl<'a, T, L: Unsigned, DB> IntoTree<DB> for CompactRef<'a, VecArray<T, L>> where
    DB: Backend<Intermediate = Intermediate, End = End>,
    ElementalFixedVecRef<'b, T>: IntoCompactVectorTree<DB>, 
[src]

impl<'a, DB, T, ML: Unsigned> IntoTree<DB> for CompactRef<'a, MaxVec<T, ML>> where
    ElementalVariableVecRef<'b, T>: IntoCompactListTree<DB>,
    DB: Backend<Intermediate = Intermediate, End = End>, 
[src]

impl<'a, T: PartialEq> PartialEq<CompactRef<'a, T>> for CompactRef<'a, T>[src]

impl<'a, T: Eq> Eq for CompactRef<'a, T>[src]

impl<'a, T: Debug> Debug for CompactRef<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Unpin for CompactRef<'a, T>

impl<'a, T> Sync for CompactRef<'a, T> where
    T: Sync

impl<'a, T> Send for CompactRef<'a, T> where
    T: Sync

impl<'a, T> RefUnwindSafe for CompactRef<'a, T> where
    T: RefUnwindSafe

impl<'a, T> UnwindSafe for CompactRef<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

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.

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

type Output = T

Should always be Self