[][src]Trait scp::ParamAccessor

pub trait ParamAccessor {
    fn poll(&mut self) -> &Parameter;
fn poll_str(&mut self) -> &String;
fn poll_i32(&mut self) -> &i32;
fn poll_multi(&mut self) -> &Vec<Parameter>;
fn poll_multi_as<B, F: FnMut(&Parameter) -> B>(
        &mut self,
        map_func: F
    ) -> Vec<B>; }

Required methods

fn poll(&mut self) -> &Parameter

fn poll_str(&mut self) -> &String

fn poll_i32(&mut self) -> &i32

fn poll_multi(&mut self) -> &Vec<Parameter>

fn poll_multi_as<B, F: FnMut(&Parameter) -> B>(&mut self, map_func: F) -> Vec<B>

Loading content...

Implementations on Foreign Types

impl<'a> ParamAccessor for Iter<'a, Parameter>[src]

Loading content...

Implementors

Loading content...