[][src]Type Definition runestick::Object

type Object<T> = HashMap<String, T>;

The type of an object.

Trait Implementations

impl<T> FromValue for Object<T> where
    T: FromValue
[src]

impl<T> ReflectValueType for Object<T>[src]

type Owned = Object<T>

The internal, owned type used for this value.

impl<T, '_> ReflectValueType for &'_ Object<T>[src]

type Owned = Object<T>

The internal, owned type used for this value.

impl<T, '_> ReflectValueType for &'_ mut Object<T>[src]

type Owned = Object<T>

The internal, owned type used for this value.

impl<T> ToValue for Object<T> where
    T: ToValue
[src]

impl<'_> UnsafeFromValue for &'_ Object<Value>[src]

type Output = *const Object<Value>

The output type from the unsafe coercion.

type Guard = RawOwnedRef

The raw guard returned. Read more

impl<'_> UnsafeFromValue for &'_ mut Object<Value>[src]

type Output = *mut Object<Value>

The output type from the unsafe coercion.

type Guard = RawOwnedMut

The raw guard returned. Read more