pub struct Concat<A, B, C = Nothing, D = Nothing> { /* private fields */ }
Expand description
Parse successive items.
Implementations§
Source§impl<A, B> Concat<A, B, Nothing, Nothing>
impl<A, B> Concat<A, B, Nothing, Nothing>
Sourcepub fn into_tuple2(self) -> (A, B)
pub fn into_tuple2(self) -> (A, B)
Convert itself to a tuple containing the parsed values.
Source§impl<A, B, C> Concat<A, B, C, Nothing>
impl<A, B, C> Concat<A, B, C, Nothing>
Sourcepub fn into_tuple3(self) -> (A, B, C)
pub fn into_tuple3(self) -> (A, B, C)
Convert itself to a tuple containing the parsed values.
Source§impl<A, B, C, D> Concat<A, B, C, D>
impl<A, B, C, D> Concat<A, B, C, D>
Sourcepub fn into_tuple4(self) -> (A, B, C, D)
pub fn into_tuple4(self) -> (A, B, C, D)
Convert itself to a tuple containing the parsed values.
Trait Implementations§
Source§impl<A, B, C, D> From<Concat<A, B, C, D>> for (A, B, C, D)
impl<A, B, C, D> From<Concat<A, B, C, D>> for (A, B, C, D)
Source§impl<A: Ord, B: Ord, C: Ord, D: Ord> Ord for Concat<A, B, C, D>
impl<A: Ord, B: Ord, C: Ord, D: Ord> Ord for Concat<A, B, C, D>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<A: ParseMore, B: ParseMore, C: ParseMore, D: ParseMore> ParseMore for Concat<A, B, C, D>
impl<A: ParseMore, B: ParseMore, C: ParseMore, D: ParseMore> ParseMore for Concat<A, B, C, D>
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq> PartialEq for Concat<A, B, C, D>
impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq> PartialEq for Concat<A, B, C, D>
Source§impl<A: PartialOrd, B: PartialOrd, C: PartialOrd, D: PartialOrd> PartialOrd for Concat<A, B, C, D>
impl<A: PartialOrd, B: PartialOrd, C: PartialOrd, D: PartialOrd> PartialOrd for Concat<A, B, C, D>
impl<A: Copy, B: Copy, C: Copy, D: Copy> Copy for Concat<A, B, C, D>
impl<A: Eq, B: Eq, C: Eq, D: Eq> Eq for Concat<A, B, C, D>
impl<A, B, C, D> StructuralPartialEq for Concat<A, B, C, D>
Auto Trait Implementations§
impl<A, B, C, D> Freeze for Concat<A, B, C, D>
impl<A, B, C, D> RefUnwindSafe for Concat<A, B, C, D>
impl<A, B, C, D> Send for Concat<A, B, C, D>
impl<A, B, C, D> Sync for Concat<A, B, C, D>
impl<A, B, C, D> Unpin for Concat<A, B, C, D>
impl<A, B, C, D> UnwindSafe for Concat<A, B, C, D>
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