Struct sixtyfps_interpreter::Struct[][src]

pub struct Struct(_);

This type represents a runtime instance of structure in .60.

This can either be an instance of a name structure introduced with the struct keyword in the .60 file, or an annonymous struct writen with the { key: value, } notation.

It can be constructed with the FromIterator trait, and converted into or from a Value with the From and TryInto trait

use core::convert::TryInto;
// Construct a value from a key/value iterator
let value : Value = [("foo".into(), 45u32.into()), ("bar".into(), true.into())]
    .iter().cloned().collect::<Struct>().into();

// get the properties of a `{ foo: 45, bar: true }`
let s : Struct = value.try_into().unwrap();
assert_eq!(s.get_field("foo").cloned().unwrap().try_into(), Ok(45u32));

Implementations

impl Struct[src]

pub fn get_field(&self, name: &str) -> Option<&Value>[src]

Get the value for a given struct field

pub fn set_field(&mut self, name: String, value: Value)[src]

Set the value of a given struct field

pub fn iter(&self) -> impl Iterator<Item = (&str, &Value)>[src]

Iterate over all the fields in this struct

Trait Implementations

impl Clone for Struct[src]

impl Debug for Struct[src]

impl Default for Struct[src]

impl From<Struct> for Value[src]

impl FromIterator<(String, Value)> for Struct[src]

impl PartialEq<Struct> for Struct[src]

impl StructuralPartialEq for Struct[src]

impl TryInto<Struct> for Value[src]

type Error = Value

The type returned in the event of a conversion error.

Auto Trait Implementations

impl !RefUnwindSafe for Struct

impl !Send for Struct

impl !Sync for Struct

impl Unpin for Struct

impl !UnwindSafe for Struct

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> 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.