pub struct BothAllow;Trait Implementations§
Source§impl CharBool for BothAllow
impl CharBool for BothAllow
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) -> CharSkip<Self>
fn iplus(self) -> CharSkipPlus<Self>
fn iexact(self, n: usize) -> CharSkipExact<Self>
fn exact(self, n: usize) -> CharExact<Self>
impl Copy for BothAllow
Auto Trait Implementations§
impl Freeze for BothAllow
impl RefUnwindSafe for BothAllow
impl Send for BothAllow
impl Sync for BothAllow
impl Unpin for BothAllow
impl UnsafeUnpin for BothAllow
impl UnwindSafe for BothAllow
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