Enum rump::WampType [] [src]

pub enum WampType {
    usize(usize),
    u8(u8),
    u16(u16),
    u32(u32),
    u64(u64),
    isize(isize),
    i8(i8),
    i16(i16),
    i32(i32),
    i64(i64),
    String(String),
    f32(f32),
    f64(f64),
    bool(bool),
    char(char),
    Vec(Vec<WampType>),
    Map(HashMap<String, WampType>),
    None,
}

All types that can be sent to/from a WAMP Router Used to publish hetereogenous arguments

Variants

usize
u8
u16
u32
u64
isize
i8
i16
i32
i64
String
f32
f64
bool
char
Vec
Map
None

Used to send an empty struct or keymap value "{}"

Trait Implementations

impl Encodable for WampType

fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error>

Derived Implementations

impl PartialEq for WampType

fn eq(&self, __arg_0: &WampType) -> bool

fn ne(&self, __arg_0: &WampType) -> bool

impl Clone for WampType

fn clone(&self) -> WampType

fn clone_from(&mut self, source: &Self)

impl Debug for WampType

fn fmt(&self, __arg_0: &mut Formatter) -> Result