pub struct ScoreOptions {
pub min_overlap: usize,
pub exclude_artist: bool,
pub exclude_label: bool,
pub required_tags: Vec<String>,
pub source_label_plural: &'static str,
pub sort: SortMode,
pub limit: usize,
}Fields§
§min_overlap: usize§exclude_artist: bool§exclude_label: bool§source_label_plural: &'static str§sort: SortMode§limit: usizeTrait Implementations§
Source§impl Clone for ScoreOptions
impl Clone for ScoreOptions
Source§fn clone(&self) -> ScoreOptions
fn clone(&self) -> ScoreOptions
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 ScoreOptions
impl RefUnwindSafe for ScoreOptions
impl Send for ScoreOptions
impl Sync for ScoreOptions
impl Unpin for ScoreOptions
impl UnsafeUnpin for ScoreOptions
impl UnwindSafe for ScoreOptions
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