pub struct Comma;Expand description
Comma.
Trait Implementations§
Source§impl Ord for Comma
impl Ord for Comma
Source§impl PartialOrd for Comma
impl PartialOrd for Comma
impl Copy for Comma
impl Eq for Comma
impl StructuralPartialEq for Comma
Auto Trait Implementations§
impl Freeze for Comma
impl RefUnwindSafe for Comma
impl Send for Comma
impl Sync for Comma
impl Unpin for Comma
impl UnwindSafe for Comma
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S> Parse for Swhere
S: TokenParse,
impl<S> Parse for Swhere
S: TokenParse,
Source§impl<T> TokenParse for Twhere
T: DirectTokenParse,
impl<T> TokenParse for Twhere
T: DirectTokenParse,
Source§type Intermediate = T
type Intermediate = T
An intermediate to hold the match before it is converted to the actual component.
Source§fn match_(
m_token: Option<&Token>,
span: Range<usize>,
) -> Result<<T as TokenParse>::Intermediate, ParseErr>
fn match_( m_token: Option<&Token>, span: Range<usize>, ) -> Result<<T as TokenParse>::Intermediate, ParseErr>
Tries to match the next token to the given component, if possible. Read more
Source§fn convert(
imed: <T as TokenParse>::Intermediate,
_span: Range<usize>,
) -> Result<T, ParseErr>
fn convert( imed: <T as TokenParse>::Intermediate, _span: Range<usize>, ) -> Result<T, ParseErr>
Parses the intermediate into the given component, raising an error if conversion fails.