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 "{}" |