pub enum Length {
Practice,
QuarterPeal,
HalfPeal,
Peal,
Range(RangeInclusive<usize>),
}Expand description
The length range of a Search.
Variants
Practice
Practice night touch. Equivalent to Range(0..=300).
QuarterPeal
Equivalent to Range(1250..=1350).
HalfPeal
Equivalent to Range(2500..=2600).
Peal
Equivalent to Range(5000..=5200).
Range(RangeInclusive<usize>)
Custom range
Auto Trait Implementations
impl RefUnwindSafe for Length
impl Send for Length
impl Sync for Length
impl Unpin for Length
impl UnwindSafe for Length
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more