pub struct HexDigit;Trait Implementations§
Source§impl CharBool for HexDigit
impl CharBool for HexDigit
fn char_bool(&self, c: char) -> bool
fn expected(&self) -> Expected
fn one(self) -> OneChar<Self>
fn star(self) -> CharStar<Self>
Source§fn min_n(self, min: usize) -> CharMin<Self>
fn min_n(self, min: usize) -> CharMin<Self>
min_n not min to avoid ambiguity with std::cmp::Ord
fn plus(self) -> CharPlus<Self>
fn istar(self) -> ICharStar<Self>
fn iplus(self) -> ICharPlus<Self>
fn iexact(self, n: usize) -> ICharExact<Self>
fn exact(self, n: usize) -> CharExact<Self>
fn until<'a, P: Parser<'a>>(self, end: P) -> CharUntil<Self, P>
impl Copy for HexDigit
Auto Trait Implementations§
impl Freeze for HexDigit
impl RefUnwindSafe for HexDigit
impl Send for HexDigit
impl Sync for HexDigit
impl Unpin for HexDigit
impl UnwindSafe for HexDigit
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