Struct v9::table::example::cheeses::read::__Read[][src]

pub struct __Read<'a> {
    pub quantity: quantity<'a>,
    pub stinky: stinky<'a>,
    // some fields omitted
}

Read-access to the rows in a table.

Fields

quantity: quantity<'a>stinky: stinky<'a>

Implementations

impl<'a> Read<'a>[src]

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

pub fn ids(&self) -> &Ids[src]

pub fn clone_row(&self, i: impl 'a + Check<M = Marker>) -> Row[src]

pub fn ref_row(&self, i: impl 'a + Check<M = Marker>) -> RowRef<'_>[src]

pub fn iter_all(&self) -> UncheckedIdRange<Marker>[src]

pub fn iter(&self) -> CheckedIter<'_, Marker>

Notable traits for CheckedIter<'a, M>

impl<'a, M: TableMarker> Iterator for CheckedIter<'a, M> type Item = CheckedId<'a, M>;
[src]

Trait Implementations

impl<'a> Extract for __Read<'a>[src]

type Owned = __OwnedContext

type Cleanup = __OwnedCleanup

Default is (), which does nothing.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for __Read<'a>

impl<'a> Send for __Read<'a>

impl<'a> Sync for __Read<'a>

impl<'a> Unpin for __Read<'a>

impl<'a> !UnwindSafe for __Read<'a>

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<X> ForeignKey for X[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.