pub struct Join<A, B, R: Range>(/* private fields */);
Trait Implementations§
Source§impl<A, B, R, Input> Parser<Input> for Join<A, B, R>
impl<A, B, R, Input> Parser<Input> for Join<A, B, R>
type Output = Vec<<A as Parser<Input>>::Output>
type Error = <A as Parser<Input>>::Error
fn parse( &mut self, input: Input, from: usize, ) -> Result<Self::Output, Self::Error>
fn p(self) -> P<Self>where
Self: Sized,
fn by_ref(&mut self) -> P<ByRef<'_, Self>>where
Self: Sized,
fn and<B>(self, b: B) -> P<And<Self, B>>
fn and_skip<B>(self, b: B) -> P<AndSkip<Self, B>>
fn skip_and<B>(self, b: B) -> P<SkipAnd<Self, B>>
fn or<B>(self, b: B) -> P<Or<Self, B>>
fn map<F, Output>(self, f: F) -> P<Map<Self, F>>
fn map_err<F, Error>(self, f: F) -> P<MapErr<Self, F>>
fn and_then<F, Output>(self, f: F) -> P<AndThen<Self, F>>
fn optional(self) -> P<Optional<Self>>where
Self: Sized,
fn bind<B, F>(self, f: F) -> P<Bind<Self, F>>
fn repeat<R>(self, range: R) -> P<Repeat<Self, R>>
impl<A: Copy, B: Copy, R: Copy + Range> Copy for Join<A, B, R>
impl<A, B, R: Range> StructuralPartialEq for Join<A, B, R>
Auto Trait Implementations§
impl<A, B, R> Freeze for Join<A, B, R>
impl<A, B, R> RefUnwindSafe for Join<A, B, R>
impl<A, B, R> Send for Join<A, B, R>
impl<A, B, R> Sync for Join<A, B, R>
impl<A, B, R> Unpin for Join<A, B, R>
impl<A, B, R> UnwindSafe for Join<A, B, R>
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