pub struct Document {
    pub node: Option<Document>,
    pub inner_components: Vec<Rc<Component>>,
    pub inner_structs: Vec<Type>,
    pub root_component: Rc<Component>,
    pub local_registry: TypeRegister,
    pub custom_fonts: Vec<(String, SyntaxToken)>,
    pub exports: Exports,
}
Expand description

The full document (a complete file)

Fields§

§node: Option<Document>§inner_components: Vec<Rc<Component>>§inner_structs: Vec<Type>§root_component: Rc<Component>§local_registry: TypeRegister§custom_fonts: Vec<(String, SyntaxToken)>

A list of paths to .ttf/.ttc files that are supposed to be registered on startup for custom font use.

§exports: Exports

Implementations§

Trait Implementations§

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.