pub struct OneOrMoreParser(/* private fields */);Implementations§
Source§impl OneOrMoreParser
impl OneOrMoreParser
pub fn new(parser: ParserHandle) -> Self
Trait Implementations§
Source§impl Clone for OneOrMoreParser
impl Clone for OneOrMoreParser
Source§fn clone(&self) -> OneOrMoreParser
fn clone(&self) -> OneOrMoreParser
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Parser for OneOrMoreParser
impl Parser for OneOrMoreParser
fn parse<'a>( &self, registry: &ParserRegistry, input: &'a str, ) -> ParseResult<'a>
fn extend(&self, parser: ParserHandle)
Auto Trait Implementations§
impl Freeze for OneOrMoreParser
impl !RefUnwindSafe for OneOrMoreParser
impl Send for OneOrMoreParser
impl Sync for OneOrMoreParser
impl Unpin for OneOrMoreParser
impl UnsafeUnpin for OneOrMoreParser
impl !UnwindSafe for OneOrMoreParser
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