pub enum NrArguments {
Any,
None,
Exactly(usize),
Between {
incl_min: usize,
incl_max: usize,
},
}
Expand description
Small enum describing argument nr constraints
(We use serde’s default, externally tagged)
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NrArguments
impl RefUnwindSafe for NrArguments
impl Send for NrArguments
impl Sync for NrArguments
impl Unpin for NrArguments
impl UnwindSafe for NrArguments
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