[][src]Struct piston_meta::meta_rules::UntilAny

pub struct UntilAny {
    pub any_characters: Arc<String>,
    pub optional: bool,
    pub property: Option<Arc<String>>,
    pub debug_id: DebugId,
}

Stores information about reading until whitespace or any of some character.

Fields

any_characters: Arc<String>

The characters to stop at.

optional: bool

Whether empty data is accepted or not.

property: Option<Arc<String>>

The property to store read text.

debug_id: DebugId

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

Methods

impl UntilAny[src]

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

Parses until whitespace or any specified characters.

Trait Implementations

impl PartialEq<UntilAny> for UntilAny[src]

impl Clone for UntilAny[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for UntilAny[src]

Auto Trait Implementations

impl Send for UntilAny

impl Sync for UntilAny

Blanket Implementations

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.

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

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

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