mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 14:42:33 +00:00
Clippy
This commit is contained in:
parent
45fd0c7ed9
commit
175ff1de0b
6 changed files with 13 additions and 13 deletions
|
@ -112,9 +112,9 @@ impl From<ApeFile> for TaggedFile {
|
||||||
ty: FileType::APE,
|
ty: FileType::APE,
|
||||||
properties: FileProperties::from(input.properties),
|
properties: FileProperties::from(input.properties),
|
||||||
tags: vec![
|
tags: vec![
|
||||||
input.ape_tag.map(|at| at.into()),
|
input.ape_tag.map(Into::into),
|
||||||
input.id3v1_tag.map(|id3v1| id3v1.into()),
|
input.id3v1_tag.map(Into::into),
|
||||||
input.id3v2_tag.map(|id3v2| id3v2.into()),
|
input.id3v2_tag.map(Into::into),
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.flatten()
|
.flatten()
|
||||||
|
|
|
@ -146,7 +146,7 @@ impl<'a> Into<ApeTagRef<'a>> for &'a ApeTag {
|
||||||
fn into(self) -> ApeTagRef<'a> {
|
fn into(self) -> ApeTagRef<'a> {
|
||||||
ApeTagRef {
|
ApeTagRef {
|
||||||
read_only: self.read_only,
|
read_only: self.read_only,
|
||||||
items: Box::new(self.items.iter().map(|i| i.into())),
|
items: Box::new(self.items.iter().map(Into::into)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,8 +32,8 @@ impl From<AiffFile> for TaggedFile {
|
||||||
ty: FileType::AIFF,
|
ty: FileType::AIFF,
|
||||||
properties: input.properties,
|
properties: input.properties,
|
||||||
tags: vec![
|
tags: vec![
|
||||||
input.text_chunks.map(|tc| tc.into()),
|
input.text_chunks.map(Into::into),
|
||||||
input.id3v2_tag.map(|id3| id3.into()),
|
input.id3v2_tag.map(Into::into),
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.flatten()
|
.flatten()
|
||||||
|
|
|
@ -33,8 +33,8 @@ impl From<WavFile> for TaggedFile {
|
||||||
ty: FileType::WAV,
|
ty: FileType::WAV,
|
||||||
properties: FileProperties::from(input.properties),
|
properties: FileProperties::from(input.properties),
|
||||||
tags: vec![
|
tags: vec![
|
||||||
input.riff_info.map(|ri| ri.into()),
|
input.riff_info.map(Into::into),
|
||||||
input.id3v2_tag.map(|id3| id3.into()),
|
input.id3v2_tag.map(Into::into),
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.flatten()
|
.flatten()
|
||||||
|
|
|
@ -125,9 +125,9 @@ impl From<Mp3File> for TaggedFile {
|
||||||
ty: FileType::MP3,
|
ty: FileType::MP3,
|
||||||
properties: FileProperties::from(input.properties),
|
properties: FileProperties::from(input.properties),
|
||||||
tags: vec![
|
tags: vec![
|
||||||
input.id3v2_tag.map(|id3v2| id3v2.into()),
|
input.id3v2_tag.map(Into::into),
|
||||||
input.id3v1_tag.map(|id3v1| id3v1.into()),
|
input.id3v1_tag.map(Into::into),
|
||||||
input.ape_tag.map(|at| at.into()),
|
input.ape_tag.map(Into::into),
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.flatten()
|
.flatten()
|
||||||
|
|
|
@ -93,7 +93,7 @@ impl From<Tag> for Ilst {
|
||||||
let mut ilst = Self::default();
|
let mut ilst = Self::default();
|
||||||
|
|
||||||
for item in input.items {
|
for item in input.items {
|
||||||
if let Some(ident) = item_key_to_ident(item.key()).map(|k| k.into()) {
|
if let Some(ident) = item_key_to_ident(item.key()).map(Into::into) {
|
||||||
let data = match item.item_value {
|
let data = match item.item_value {
|
||||||
ItemValue::Text(text) => AtomData::UTF8(text),
|
ItemValue::Text(text) => AtomData::UTF8(text),
|
||||||
_ => continue,
|
_ => continue,
|
||||||
|
@ -286,7 +286,7 @@ impl<'a> Into<AtomDataRef<'a>> for &'a AtomData {
|
||||||
impl<'a> Into<IlstRef<'a>> for &'a Ilst {
|
impl<'a> Into<IlstRef<'a>> for &'a Ilst {
|
||||||
fn into(self) -> IlstRef<'a> {
|
fn into(self) -> IlstRef<'a> {
|
||||||
IlstRef {
|
IlstRef {
|
||||||
atoms: Box::new(self.atoms.iter().map(|a| a.into())),
|
atoms: Box::new(self.atoms.iter().map(Into::into)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue