Struct dochy_core::structs::RootObject[][src]

pub struct RootObject { /* fields omitted */ }

Implementations

impl RootObject[src]

pub fn new(
    default: HashM<String, (usize, RootValue)>,
    sabun: HashM<String, RustParam>,
    old: FnvHashSet<String>
) -> RootObject
[src]

pub fn default(&self) -> &HashM<String, (usize, RootValue)>[src]

pub fn meta_table(&self) -> &MetaTable[src]

pub fn mut_refs(
    &mut self
) -> (&mut HashM<String, (usize, RootValue)>, &mut HashM<String, RustParam>, &mut FnvHashSet<String>, &mut MetaTable)
[src]

pub fn deconstruct(
    self
) -> (Box<HashM<String, (usize, RootValue)>>, Box<HashM<String, RustParam>>, Box<FnvHashSet<String>>, Box<MetaTable>)
[src]

pub fn construct(
    default: Box<HashM<String, (usize, RootValue)>>,
    sabun: Box<HashM<String, RustParam>>,
    old: Box<FnvHashSet<String>>,
    meta_table: Box<MetaTable>
) -> RootObject
[src]

pub fn sabun(&self) -> &HashM<String, RustParam>[src]

pub fn set_sabun(
    &mut self,
    name: String,
    param: RustParam
) -> Result<Option<RustParam>, SetSabunError>
[src]

Trait Implementations

impl Clone for RootObject[src]

impl Debug for RootObject[src]

impl PartialEq<RootObject> for RootObject[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,