pub struct Any;Expand description
Trait Implementations§
Source§impl<'input, T: 'input> Rule<'input, [T]> for Any
impl<'input, T: 'input> Rule<'input, [T]> for Any
Source§fn parse_at<'cursor, 'this, 'index>(
&'this self,
input: &'cursor mut &'input [T],
index: &'index mut usize,
) -> Result<Self::Output, ParseError>where
'input: 'this,
fn parse_at<'cursor, 'this, 'index>(
&'this self,
input: &'cursor mut &'input [T],
index: &'index mut usize,
) -> Result<Self::Output, ParseError>where
'input: 'this,
Parses a rule at a given index with a given input. Read more
Source§fn parse<'this>(
&'this self,
input: &'input SliceType,
) -> Result<(&'input SliceType, Self::Output), ParseError>where
'input: 'this,
fn parse<'this>(
&'this self,
input: &'input SliceType,
) -> Result<(&'input SliceType, Self::Output), ParseError>where
'input: 'this,
Parses a given rule at the start of some input. Read more
Source§fn map_parsed<Output, F: Fn(Self::Output) -> Output>(
self,
function: F,
) -> Map<'input, SliceType, Self, Output, F>where
Self: Sized,
fn map_parsed<Output, F: Fn(Self::Output) -> Output>(
self,
function: F,
) -> Map<'input, SliceType, Self, Output, F>where
Self: Sized,
Maps an infallible function onto the output of a rule.
Source§fn try_map_parsed<Output, E: Error + 'static, F: Fn(Self::Output) -> Result<Output, E>>(
self,
function: F,
) -> TryMap<'input, SliceType, Self, Output, E, F>where
Self: Sized,
fn try_map_parsed<Output, E: Error + 'static, F: Fn(Self::Output) -> Result<Output, E>>(
self,
function: F,
) -> TryMap<'input, SliceType, Self, Output, E, F>where
Self: Sized,
Maps a function onto the output of a rule, passing the error back if it fails.
Source§fn repeat_for<const REPS: usize>(
self,
) -> RepeatFor<'input, SliceType, Self, REPS>where
Self: Sized,
fn repeat_for<const REPS: usize>(
self,
) -> RepeatFor<'input, SliceType, Self, REPS>where
Self: Sized,
Repeats this rule a known amount of times.
Source§fn repeat(self, reps: usize) -> Repeat<'input, SliceType, Self>where
Self: Sized,
fn repeat(self, reps: usize) -> Repeat<'input, SliceType, Self>where
Self: Sized,
Repeats this rule a set amount of times.
Source§fn take(self, at_most: usize) -> Many<'input, SliceType, Self>where
Self: Sized,
fn take(self, at_most: usize) -> Many<'input, SliceType, Self>where
Self: Sized,
Repeats this rule at most a set amount of times.
Source§fn hoard(self) -> Many<'input, SliceType, Self>where
Self: Sized,
fn hoard(self) -> Many<'input, SliceType, Self>where
Self: Sized,
Repeats this rule forever until it fails.
Source§fn take_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
at_most: usize,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
fn take_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
at_most: usize,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
Repeats this rule at most a set amount of times, separated by another rule.
Source§fn hoard_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
fn hoard_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
Repeats this rule forever until it fails, separated by another rule.
Source§fn consume_all(self) -> Consume<'input, SliceType, Self>
fn consume_all(self) -> Consume<'input, SliceType, Self>
Repeats this rule until the end of input, failing if it ever does.
Source§impl<'input> Rule<'input, str> for Any
impl<'input> Rule<'input, str> for Any
Source§fn parse_at<'cursor, 'this, 'index>(
&'this self,
input: &'cursor mut &'input str,
index: &'index mut usize,
) -> Result<Self::Output, ParseError>where
'input: 'this,
fn parse_at<'cursor, 'this, 'index>(
&'this self,
input: &'cursor mut &'input str,
index: &'index mut usize,
) -> Result<Self::Output, ParseError>where
'input: 'this,
Parses a rule at a given index with a given input. Read more
Source§fn parse<'this>(
&'this self,
input: &'input SliceType,
) -> Result<(&'input SliceType, Self::Output), ParseError>where
'input: 'this,
fn parse<'this>(
&'this self,
input: &'input SliceType,
) -> Result<(&'input SliceType, Self::Output), ParseError>where
'input: 'this,
Parses a given rule at the start of some input. Read more
Source§fn map_parsed<Output, F: Fn(Self::Output) -> Output>(
self,
function: F,
) -> Map<'input, SliceType, Self, Output, F>where
Self: Sized,
fn map_parsed<Output, F: Fn(Self::Output) -> Output>(
self,
function: F,
) -> Map<'input, SliceType, Self, Output, F>where
Self: Sized,
Maps an infallible function onto the output of a rule.
Source§fn try_map_parsed<Output, E: Error + 'static, F: Fn(Self::Output) -> Result<Output, E>>(
self,
function: F,
) -> TryMap<'input, SliceType, Self, Output, E, F>where
Self: Sized,
fn try_map_parsed<Output, E: Error + 'static, F: Fn(Self::Output) -> Result<Output, E>>(
self,
function: F,
) -> TryMap<'input, SliceType, Self, Output, E, F>where
Self: Sized,
Maps a function onto the output of a rule, passing the error back if it fails.
Source§fn repeat_for<const REPS: usize>(
self,
) -> RepeatFor<'input, SliceType, Self, REPS>where
Self: Sized,
fn repeat_for<const REPS: usize>(
self,
) -> RepeatFor<'input, SliceType, Self, REPS>where
Self: Sized,
Repeats this rule a known amount of times.
Source§fn repeat(self, reps: usize) -> Repeat<'input, SliceType, Self>where
Self: Sized,
fn repeat(self, reps: usize) -> Repeat<'input, SliceType, Self>where
Self: Sized,
Repeats this rule a set amount of times.
Source§fn take(self, at_most: usize) -> Many<'input, SliceType, Self>where
Self: Sized,
fn take(self, at_most: usize) -> Many<'input, SliceType, Self>where
Self: Sized,
Repeats this rule at most a set amount of times.
Source§fn hoard(self) -> Many<'input, SliceType, Self>where
Self: Sized,
fn hoard(self) -> Many<'input, SliceType, Self>where
Self: Sized,
Repeats this rule forever until it fails.
Source§fn take_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
at_most: usize,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
fn take_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
at_most: usize,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
Repeats this rule at most a set amount of times, separated by another rule.
Source§fn hoard_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
fn hoard_sep<R: Rule<'input, SliceType>>(
self,
separator: R,
) -> Separated<'input, SliceType, Self, R>where
Self: Sized,
Repeats this rule forever until it fails, separated by another rule.
Source§fn consume_all(self) -> Consume<'input, SliceType, Self>
fn consume_all(self) -> Consume<'input, SliceType, Self>
Repeats this rule until the end of input, failing if it ever does.
impl Copy for Any
Auto Trait Implementations§
impl Freeze for Any
impl RefUnwindSafe for Any
impl Send for Any
impl Sync for Any
impl Unpin for Any
impl UnwindSafe for Any
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more