Trait rbatis::crud::Ids[][src]

pub trait Ids<C> where
    C: CRUDTable
{ fn to_ids(&self) -> Vec<C::IdType>; }

fetch ids, must use Id trait together

Required methods

fn to_ids(&self) -> Vec<C::IdType>[src]

get ids

Loading content...

Implementations on Foreign Types

impl<C> Ids<C> for [C] where
    C: CRUDTable
[src]

impl<C> Ids<C> for HashSet<C> where
    C: CRUDTable
[src]

impl<C> Ids<C> for VecDeque<C> where
    C: CRUDTable
[src]

impl<C> Ids<C> for LinkedList<C> where
    C: CRUDTable
[src]

impl<K, C> Ids<C> for HashMap<K, C> where
    C: CRUDTable
[src]

impl<K, C> Ids<C> for BTreeMap<K, C> where
    C: CRUDTable
[src]

Loading content...

Implementors

Loading content...