Trait wamp::ArgList [] [src]

pub trait ArgList {
    fn get_int(&self, index: usize) -> CallResult<Option<i64>>;
    fn get_string<'a>(&'a self, index: usize) -> CallResult<Option<&'a str>>;
    fn verify_len(&self, expected_len: usize) -> CallResult<()>;
}

Required Methods

Implementors