Map

Struct Map 

Source
pub struct Map<'input, SliceType: ?Sized, R: Rule<'input, SliceType>, O, Func: Fn(R::Output) -> O> { /* private fields */ }
Expand description

Maps a function over the output of a rule. See Rule::map_parsed.

Trait Implementations§

Source§

impl<'input, SliceType: Clone + ?Sized, R: Clone + Rule<'input, SliceType>, O: Clone, Func: Clone + Fn(R::Output) -> O> Clone for Map<'input, SliceType, R, O, Func>

Source§

fn clone(&self) -> Map<'input, SliceType, R, O, Func>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'input, SliceType: Debug + ?Sized, R: Debug + Rule<'input, SliceType>, O: Debug, Func: Debug + Fn(R::Output) -> O> Debug for Map<'input, SliceType, R, O, Func>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'input, SliceType: ?Sized, R: Rule<'input, SliceType>, O, Func: Fn(R::Output) -> O> NamedRule for Map<'input, SliceType, R, O, Func>

Source§

fn name(&self) -> Option<&'static str>

Defines the name printed in errors including this rule.
Source§

impl<'input, SliceType: PartialEq + ?Sized, R: PartialEq + Rule<'input, SliceType>, O: PartialEq, Func: PartialEq + Fn(R::Output) -> O> PartialEq for Map<'input, SliceType, R, O, Func>

Source§

fn eq(&self, other: &Map<'input, SliceType, R, O, Func>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'input, SliceType: ?Sized, R: Rule<'input, SliceType>, O, Func: Fn(R::Output) -> O> Rule<'input, SliceType> for Map<'input, SliceType, R, O, Func>

Source§

type Output = <Func as FnOnce(<R as Rule<'input, SliceType>>::Output)>::Output

The type of the value of a successful parse of this rule.
Source§

fn parse_at<'cursor, 'this, 'index>( &'this self, input: &'cursor mut &'input SliceType, 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,

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,

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,

Maps a function onto the output of a rule, passing the error back if it fails.
Source§

fn prevent(self) -> Not<Self>
where Self: Sized,

Matches when this fails, and vice versa.
Source§

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,

Repeats this rule a set amount of times.
Source§

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,

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,

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,

Repeats this rule forever until it fails, separated by another rule.
Source§

fn consume_all(self) -> Consume<'input, SliceType, Self>
where Self: Sized, Consume<'input, SliceType, Self>: Rule<'input, SliceType, Output = Vec<Self::Output>>,

Repeats this rule until the end of input, failing if it ever does.
Source§

fn spanned(self) -> Spanned<'input, SliceType, Self>
where Self: Sized, SliceType: Index<RangeTo<usize>, Output = SliceType>,

Captures the output and span of this rule, returning them along with the output in a Span.
Source§

fn attempt(self) -> Attempt<'input, SliceType, Self>
where Self: Sized,

Tries to capture this rule, returning None if it doesn’t match.
Source§

impl<'input, SliceType: ?Sized, R: Rule<'input, SliceType>, O, Func: Fn(R::Output) -> O> StructuralPartialEq for Map<'input, SliceType, R, O, Func>

Auto Trait Implementations§

§

impl<'input, SliceType, R, O, Func> Freeze for Map<'input, SliceType, R, O, Func>
where R: Freeze, Func: Freeze, SliceType: ?Sized,

§

impl<'input, SliceType, R, O, Func> RefUnwindSafe for Map<'input, SliceType, R, O, Func>
where R: RefUnwindSafe, Func: RefUnwindSafe, O: RefUnwindSafe, SliceType: RefUnwindSafe + ?Sized,

§

impl<'input, SliceType, R, O, Func> Send for Map<'input, SliceType, R, O, Func>
where R: Send, Func: Send, O: Send, SliceType: Sync + ?Sized,

§

impl<'input, SliceType, R, O, Func> Sync for Map<'input, SliceType, R, O, Func>
where R: Sync, Func: Sync, O: Sync, SliceType: Sync + ?Sized,

§

impl<'input, SliceType, R, O, Func> Unpin for Map<'input, SliceType, R, O, Func>
where R: Unpin, Func: Unpin, O: Unpin, SliceType: ?Sized,

§

impl<'input, SliceType, R, O, Func> UnwindSafe for Map<'input, SliceType, R, O, Func>
where R: UnwindSafe, Func: UnwindSafe, O: UnwindSafe, SliceType: RefUnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.