[][src]Struct romulus::ast::Range

pub struct Range(pub Match, pub Match);

A range has two matches seperated by a comma When the first one is matched all of the lines until the end is matched will execute the body statement.

Ranges are start inclusive but end exclusive

When a start match is a regex and has capture variables it's variables are stored and supplied for each next until the range ends

/start: (?P<type>.*)/, /end/{
  /elem: (?P<elem>.*)/ {
    print("${type}: ${elem}")
  }
}

Trait Implementations

impl PartialEq<Range> for Range[src]

impl Debug for Range[src]

Auto Trait Implementations

impl Send for Range

impl Unpin for Range

impl Sync for Range

impl UnwindSafe for Range

impl !RefUnwindSafe for Range

Blanket Implementations

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.

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]