pub struct QualityRange {
pub min: Option<i32>,
pub max: Option<i32>,
}Expand description
Token quality range filter
The quality range is considered inclusive and used as a filter, will be applied as such.
Fields§
§min: Option<i32>§max: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for QualityRange
impl Clone for QualityRange
Source§fn clone(&self) -> QualityRange
fn clone(&self) -> QualityRange
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QualityRange
impl RefUnwindSafe for QualityRange
impl Send for QualityRange
impl Sync for QualityRange
impl Unpin for QualityRange
impl UnwindSafe for QualityRange
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