Struct piston_meta::meta_rules::Tag[][src]

pub struct Tag {
    pub text: Arc<String>,
    pub not: bool,
    pub inverted: bool,
    pub property: Option<Arc<String>>,
    pub debug_id: DebugId,
}

Stores information about tag.

Fields

text: Arc<String>

The text to match against.

not: bool

Whether to fail when matching against text.

inverted: bool

Whether to set property to true or false (inverted).

property: Option<Arc<String>>

Which property to set if tag matches.

debug_id: DebugId

A debug id to track down the rule generating an error.

Implementations

impl Tag[src]

pub fn parse(
    &self,
    tokens: &mut Vec<Range<MetaData>>,
    state: &TokenizerState,
    read_token: &ReadToken<'_>
) -> ParseResult<TokenizerState>
[src]

Parses tag. If the tag is linked to a property, the property will be set. If the meta reader fails setting the property the error is handled. If the token is not linked to any property, the same state will be returned.

Trait Implementations

impl Clone for Tag[src]

impl Debug for Tag[src]

impl PartialEq<Tag> for Tag[src]

impl StructuralPartialEq for Tag[src]

Auto Trait Implementations

impl RefUnwindSafe for Tag

impl Send for Tag

impl Sync for Tag

impl Unpin for Tag

impl UnwindSafe for Tag

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.