pub struct Join<NT1, P2> {
pub first: NT1,
pub second: P2,
}Fields§
§first: NT1§second: P2Trait Implementations§
Source§impl<'input, NT1, P2, G> Symbol<'input, G> for Join<NT1, P2>
impl<'input, NT1, P2, G> Symbol<'input, G> for Join<NT1, P2>
type Output = (<NT1 as Symbol<'input, G>>::Output, <P2 as Symbol<'input, G>>::Output)
fn pretty_print(&self) -> String
fn parse( &self, grammar: &mut G, start: Input<'input>, ) -> ParseResult<'input, (NT1::Output, P2::Output)>
fn parse_complete( &self, grammar: &mut G, text: &'input str, ) -> Result<Self::Output, Error<'input>>
fn parse_prefix( &self, grammar: &mut G, text: &'input str, ) -> ParseResult<'input, Self::Output>
Auto Trait Implementations§
impl<NT1, P2> Freeze for Join<NT1, P2>
impl<NT1, P2> RefUnwindSafe for Join<NT1, P2>where
NT1: RefUnwindSafe,
P2: RefUnwindSafe,
impl<NT1, P2> Send for Join<NT1, P2>
impl<NT1, P2> Sync for Join<NT1, P2>
impl<NT1, P2> Unpin for Join<NT1, P2>
impl<NT1, P2> UnwindSafe for Join<NT1, P2>where
NT1: UnwindSafe,
P2: UnwindSafe,
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