Enum wamp_async::Arg[][src]

pub enum Arg {
    Uri(WampUri),
    Id(WampId),
    Integer(WampInteger),
    String(WampString),
    Bool(WampBool),
    Dict(WampDict),
    List(WampList),
    None,
}

Generic enum that can hold any concrete WAMP value

Variants

Uri(WampUri)

uri: a string URI as defined in URIs

Id(WampId)

id: an integer ID as defined in IDs

Integer(WampInteger)

integer: a non-negative integer

String(WampString)

string: a Unicode string, including the empty string

Bool(WampBool)

bool: a boolean value (true or false)

Dict(WampDict)

dict: a dictionary (map) where keys MUST be strings

List(WampList)

list: a list (array) where items can be again any of this enumeration

None

Trait Implementations

impl Debug for Arg[src]

impl<'de> Deserialize<'de> for Arg[src]

impl Serialize for Arg[src]

Auto Trait Implementations

impl RefUnwindSafe for Arg

impl Send for Arg

impl Sync for Arg

impl Unpin for Arg

impl UnwindSafe for Arg

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,