[][src]Enum snax::SnaxItem

pub enum SnaxItem {
    Tag(SnaxTag),
    SelfClosingTag(SnaxSelfClosingTag),
    Fragment(SnaxFragment),
    Content(TokenTree),
}

One complete block in the syntax.

For more information, look at the documentation for the struct that each variant wraps.

Variants

Tag(SnaxTag)

A standard tag, which can have attributes and children.

SelfClosingTag(SnaxSelfClosingTag)

An empty tag, which can only have attributes.

Fragment(SnaxFragment)

A fragment, containing a list of zero or more children.

Content(TokenTree)

A block of content, which can contain any Rust expression.

Trait Implementations

impl PartialEq<SnaxItem> for SnaxItem[src]

impl Debug for SnaxItem[src]

Auto Trait Implementations

impl !Send for SnaxItem

impl Unpin for SnaxItem

impl !Sync for SnaxItem

impl UnwindSafe for SnaxItem

impl !RefUnwindSafe for SnaxItem

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]