Struct lozizol::model::Entry[][src]

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

Implementations

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

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

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

pub fn from_record(record: Record<R, O>, type_uri: String) -> Self[src]

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

pub fn type_uri(&self) -> &str[src]

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

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

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<R, O> UnwindSafe for Entry<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.