[][src]Struct mtots::Class

pub struct Class { /* fields omitted */ }

Implementations

impl Class[src]

pub fn new(
    name: RcStr,
    map: HashMap<RcStr, Value, RandomState>,
    static_map: HashMap<RcStr, Value, RandomState>
) -> Rc<Class>
[src]

pub fn new_with_behavior(
    name: RcStr,
    map: HashMap<RcStr, Value, RandomState>,
    static_map: HashMap<RcStr, Value, RandomState>,
    behavior: Option<Behavior>
) -> Rc<Class>
[src]

pub fn name(&self) -> &RcStr[src]

pub fn map(&self) -> &HashMap<RcStr, Value, RandomState>[src]

pub fn static_map(&self) -> &HashMap<RcStr, Value, RandomState>[src]

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

pub fn behavior(&self) -> &Behavior[src]

pub fn map_from_funcs(
    funcs: Vec<NativeFunction>
) -> HashMap<RcStr, Value, RandomState>
[src]

Convenience method for creating a map or static_map from some native functions

pub fn join_class_maps<C>(
    map: HashMap<RcStr, Value, RandomState>,
    classes: Vec<C>
) -> HashMap<RcStr, Value, RandomState> where
    C: AsRef<Class>, 
[src]

Trait Implementations

impl Debug for Class[src]

impl PartialEq<Class> for Class[src]

impl PartialOrd<Class> for Class[src]

Auto Trait Implementations

impl !RefUnwindSafe for Class

impl !Send for Class

impl !Sync for Class

impl Unpin for Class

impl !UnwindSafe for Class

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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