[][src]Trait rql::Idd

pub trait Idd {
    type RowType;
    fn id(&self) -> Id<Self::RowType>;
}

A trait for getting row Ids

Associated Types

type RowType

The type of the row

Loading content...

Required methods

fn id(&self) -> Id<Self::RowType>

Get the row's id

Loading content...

Implementors

impl<'a, T> Idd for Row<'a, T>[src]

type RowType = T

impl<'a, T> Idd for RowMut<'a, T>[src]

type RowType = T

impl<T> Idd for Id<T>[src]

type RowType = T

Loading content...