Iterable

Trait Iterable 

Source
pub trait Iterable {
    // Required method
    fn cursor(&self) -> Cursor;
}

Required Methods§

Source

fn cursor(&self) -> Cursor

Implementations on Foreign Types§

Source§

impl Iterable for i32

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for i64

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for u32

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for u64

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for String

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for DateTime<Utc>

Source§

fn cursor(&self) -> Cursor

Source§

impl Iterable for Uuid

Source§

fn cursor(&self) -> Cursor

Source§

impl<T> Iterable for Option<T>
where T: Default + Iterable,

Source§

fn cursor(&self) -> Cursor

Implementors§