[][src]Enum runestick::Key

pub enum Key {
    Unit,
    Byte(u8),
    Char(char),
    Bool(bool),
    Integer(i64),
    String(StringKey),
    Bytes(Bytes),
    Vec(Vec<Key>),
    Tuple(Box<[Key]>),
    Option(Option<Box<Key>>),
    Variant(VariantKey),
}

A key that can be used as an anonymous object key.

Variants

Unit

A constant unit.

Byte(u8)

A byte.

Char(char)

A character.

Bool(bool)

A boolean constant value.

Integer(i64)

An integer constant.

String(StringKey)

A string constant designated by its slot.

Bytes(Bytes)

A byte string.

Vec(Vec<Key>)

A vector of values.

Tuple(Box<[Key]>)

An anonymous tuple.

Option(Option<Box<Key>>)

An option.

Variant(VariantKey)

A variant.

Implementations

impl Key[src]

pub fn from_value(value: &Value) -> Result<Self, VmError>[src]

Convert a value reference into a key.

pub fn into_value(self) -> Value[src]

Convert into virtual machine value.

We provide this associated method since a constant value can be converted into a value infallibly, which is not captured by the trait otherwise.

pub fn into_bool(self) -> Result<bool, Self>[src]

Try to coerce into boolean.

pub fn type_info(&self) -> TypeInfo[src]

Get the type information of the value.

Trait Implementations

impl Clone for Key[src]

impl Debug for Key[src]

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

Deserialize implementation for value.

impl Eq for Key[src]

impl From<String> for Key[src]

impl From<i64> for Key[src]

impl FromValue for Key[src]

impl Hash for Key[src]

impl Ord for Key[src]

impl PartialEq<Key> for Key[src]

impl PartialOrd<Key> for Key[src]

impl Serialize for Key[src]

Serialize implementation for value.

impl StructuralEq for Key[src]

impl StructuralPartialEq for Key[src]

impl ToValue for Key[src]

Auto Trait Implementations

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> CallHasher for T where
    T: Hash

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.