Struct lozizol::model::Record[][src]

pub struct Record<R, O> { /* fields omitted */ }

Implementations

impl<R, O> Record<R, O>[src]

pub fn owned(length: usize, type_id: usize, data: O) -> Self[src]

pub fn new(length: usize, type_id: usize, data: Data<R, O>) -> Self[src]

pub fn take_data(&mut self) -> Data<R, O>[src]

pub fn type_id(&self) -> &usize[src]

pub fn len(&self) -> &usize[src]

pub fn remaining(&self) -> &usize[src]

Trait Implementations

impl<R, O> Drop for Record<R, O>[src]

Auto Trait Implementations

impl<R, O> RefUnwindSafe for Record<R, O> where
    O: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, O> Send for Record<R, O> where
    O: Send,
    R: Send

impl<R, O> Sync for Record<R, O> where
    O: Sync,
    R: Sync

impl<R, O> Unpin for Record<R, O> where
    O: Unpin,
    R: Unpin

impl<R, O> UnwindSafe for Record<R, O> where
    O: UnwindSafe,
    R: 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<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.