[][src]Struct sixtyfps_compilerlib::parser::Node

pub struct Node<'a, P: Parser>(_);

The return value of DefaultParser::start_node. This borrows the parser and finishes the node on Drop

Trait Implementations

impl<'a, P: Parser> Deref for Node<'a, P>[src]

type Target = P

The resulting type after dereferencing.

impl<'a, P: Parser> DerefMut for Node<'a, P>[src]

impl<'a, P: Parser> Drop for Node<'a, P>[src]

Auto Trait Implementations

impl<'a, P> RefUnwindSafe for Node<'a, P> where
    P: RefUnwindSafe

impl<'a, P> Send for Node<'a, P> where
    P: Send

impl<'a, P> Sync for Node<'a, P> where
    P: Sync

impl<'a, P> Unpin for Node<'a, P>

impl<'a, P> !UnwindSafe for Node<'a, P>

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