Formatting
This commit is contained in:
parent
6d77e2155f
commit
ce9c1c9228
@ -144,7 +144,7 @@ pub struct AppPublicAlbumMatches<'app> {
|
|||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
pub enum AppPublicMatchesKind<'app> {
|
pub enum AppPublicMatchesKind<'app> {
|
||||||
Artist(AppPublicArtistMatches<'app>),
|
Artist(AppPublicArtistMatches<'app>),
|
||||||
Album(AppPublicAlbumMatches<'app>)
|
Album(AppPublicAlbumMatches<'app>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'app> AppPublicMatchesKind<'app> {
|
impl<'app> AppPublicMatchesKind<'app> {
|
||||||
|
@ -25,7 +25,11 @@ pub struct Match<T> {
|
|||||||
|
|
||||||
impl<T> Match<T> {
|
impl<T> Match<T> {
|
||||||
pub fn new(score: u8, item: T) -> Self {
|
pub fn new(score: u8, item: T) -> Self {
|
||||||
Match { score, item, disambiguation: None }
|
Match {
|
||||||
|
score,
|
||||||
|
item,
|
||||||
|
disambiguation: None,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_disambiguation<S: Into<String>>(&mut self, disambiguation: S) {
|
pub fn set_disambiguation<S: Into<String>>(&mut self, disambiguation: S) {
|
||||||
|
Loading…
Reference in New Issue
Block a user