[][src]Enum wasm_rpc::ObjectKey

pub enum ObjectKey {
    Integer(i64),
    Bytes(Vec<u8>),
    String(String),
    Bool(bool),
    Null,
}

A simplified CBOR value containing only types useful for keys.

Variants

Integer(i64)

An integer.

Bytes(Vec<u8>)

A byte string.

String(String)

An UTF-8 string.

Bool(bool)

A boolean value.

Null

No value.

Methods

impl ObjectKey[src]

pub fn is_bytes(&self) -> bool[src]

Returns true if the ObjectKey is a byte string.

pub fn as_bytes(&self) -> Option<&Vec<u8>>[src]

Returns the associated byte string or None if the ObjectKey has a different type.

pub fn as_bytes_mut(&mut self) -> Option<&mut Vec<u8>>[src]

Returns the associated mutable byte string or None if the ObjectKey has a different type.

pub fn is_string(&self) -> bool[src]

Returns true if the ObjectKey is a string.

pub fn as_string(&self) -> Option<&String>[src]

Returns the associated string or None if the *ObjectKey` has a different type.

pub fn as_string_mut(&mut self) -> Option<&mut String>[src]

Returns the associated mutable string or None if the ObjectKey has a different type.

pub fn is_number(&self) -> bool[src]

Retrns true if the ObjectKey is a number.

pub fn as_i64(&self) -> Option<i64>[src]

If the ObjectKey is a number, return or cast it to a i64. Returns None otherwise.

pub fn as_u64(&self) -> Option<u64>[src]

If the ObjectKey is a number, return or cast it to a u64. Returns None otherwise.

pub fn is_boolean(&self) -> bool[src]

Returns true if the ObjectKey is a boolean.

pub fn as_boolean(&self) -> Option<bool>[src]

If the ObjectKey is a Boolean, returns the associated bool. Returns None otherwise.

pub fn is_null(&self) -> bool[src]

Returns true if the ObjectKey is a Null. Returns false otherwise.

pub fn as_null(&self) -> Option<()>[src]

If the ObjectKey is a Null, returns (). Returns None otherwise.

Trait Implementations

impl From<String> for ObjectKey[src]

impl From<bool> for ObjectKey[src]

impl From<ObjectKey> for Value[src]

impl From<Value> for ObjectKey[src]

impl From<Vec<u8>> for ObjectKey[src]

impl From<i64> for ObjectKey[src]

impl PartialEq<ObjectKey> for ObjectKey[src]

impl Hash for ObjectKey[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for ObjectKey[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Eq for ObjectKey[src]

impl Serialize for ObjectKey[src]

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

impl Debug for ObjectKey[src]

impl Clone for ObjectKey[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd<ObjectKey> for ObjectKey[src]

Auto Trait Implementations

impl Send for ObjectKey

impl Sync for ObjectKey

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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