Trait skytable::types::GetIterator[][src]

pub trait GetIterator<T: IntoSkyhashBytes>: IntoSkyhashAction {
    fn get_iter(&self) -> Iter<'_, T>;
}
Expand description

Implement this trait for methods in crate::actions that need them. See the module level documentation for more information

Required methods

fn get_iter(&self) -> Iter<'_, T>[src]

Implementations on Foreign Types

impl<T: IntoSkyhashBytes, const N: usize> GetIterator<T> for [T; N][src]

fn get_iter(&self) -> Iter<'_, T>[src]

impl<T: IntoSkyhashBytes, const N: usize> GetIterator<T> for &'static [T; N][src]

fn get_iter(&self) -> Iter<'_, T>[src]

impl<T: IntoSkyhashBytes> GetIterator<T> for &[T][src]

fn get_iter(&self) -> Iter<'_, T>[src]

impl<T: IntoSkyhashBytes> GetIterator<T> for Vec<T>[src]

fn get_iter(&self) -> Iter<'_, T>[src]

impl<T: IntoSkyhashBytes> GetIterator<T> for &Vec<T>[src]

fn get_iter(&self) -> Iter<'_, T>[src]

Implementors