pub enum AtLeast {
Zero,
One,
}Expand description
At least some number of times.
Variants§
Zero
Matches a rule zero or more times. Delimited by *.
One
Matches a rule one or more times. Delimited by +.
Trait Implementations§
Source§impl Ord for AtLeast
impl Ord for AtLeast
Source§impl PartialOrd for AtLeast
impl PartialOrd for AtLeast
impl Copy for AtLeast
impl Eq for AtLeast
impl StructuralPartialEq for AtLeast
Auto Trait Implementations§
impl Freeze for AtLeast
impl RefUnwindSafe for AtLeast
impl Send for AtLeast
impl Sync for AtLeast
impl Unpin for AtLeast
impl UnsafeUnpin for AtLeast
impl UnwindSafe for AtLeast
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