pub struct AlbumFiles {
pub files: Vec<AlbumFile>,
pub count: u64,
}Expand description
Files returned by the album listing endpoint.
Fields§
§files: Vec<AlbumFile>Files collected for the album.
count: u64Total number of files in the album.
Trait Implementations§
Source§impl Clone for AlbumFiles
impl Clone for AlbumFiles
Source§fn clone(&self) -> AlbumFiles
fn clone(&self) -> AlbumFiles
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlbumFiles
impl Debug for AlbumFiles
impl Eq for AlbumFiles
Source§impl PartialEq for AlbumFiles
impl PartialEq for AlbumFiles
Source§fn eq(&self, other: &AlbumFiles) -> bool
fn eq(&self, other: &AlbumFiles) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AlbumFiles
Auto Trait Implementations§
impl Freeze for AlbumFiles
impl RefUnwindSafe for AlbumFiles
impl Send for AlbumFiles
impl Sync for AlbumFiles
impl Unpin for AlbumFiles
impl UnsafeUnpin for AlbumFiles
impl UnwindSafe for AlbumFiles
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