[][src]Struct bracket::parser::ast::Document

pub struct Document<'source>(pub &'source str, pub Vec<Node<'source>>);

Documents are abstract nodes that encapsulate a collection of child nodes.

They are used as the root node of a compiled template.

Implementations

impl<'source> Document<'source>[src]

pub fn nodes(&self) -> &Vec<Node<'source>>[src]

List of child nodes.

pub fn nodes_mut(&mut self) -> &mut Vec<Node<'source>>[src]

Mutable list of child nodes.

Trait Implementations

impl<'_> Debug for Document<'_>[src]

impl<'_> Display for Document<'_>[src]

impl<'source> Eq for Document<'source>[src]

impl<'source> PartialEq<Document<'source>> for Document<'source>[src]

impl<'source> Slice<'source> for Document<'source>[src]

impl<'source> StructuralEq for Document<'source>[src]

impl<'source> StructuralPartialEq for Document<'source>[src]

Auto Trait Implementations

impl<'source> RefUnwindSafe for Document<'source>

impl<'source> Send for Document<'source>

impl<'source> Sync for Document<'source>

impl<'source> Unpin for Document<'source>

impl<'source> UnwindSafe for Document<'source>

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> ToString for T where
    T: Display + ?Sized
[src]

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.