pub struct AlbumsList {
pub success: bool,
pub albums: Vec<Album>,
pub home_domain: Option<Url>,
}Expand description
Album listing for the authenticated user.
Values produced by this crate always have success == true; failures are returned as
CyberdropError.
Fields§
§success: boolWhether the API request was successful.
albums: Vec<Album>Albums returned by the service.
home_domain: Option<Url>Optional home domain returned by the service, parsed as a URL.
Trait Implementations§
Source§impl Clone for AlbumsList
impl Clone for AlbumsList
Source§fn clone(&self) -> AlbumsList
fn clone(&self) -> AlbumsList
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 moreSource§impl Debug for AlbumsList
impl Debug for AlbumsList
Source§impl PartialEq for AlbumsList
impl PartialEq for AlbumsList
impl Eq for AlbumsList
impl StructuralPartialEq for AlbumsList
Auto Trait Implementations§
impl Freeze for AlbumsList
impl RefUnwindSafe for AlbumsList
impl Send for AlbumsList
impl Sync for AlbumsList
impl Unpin for AlbumsList
impl UnsafeUnpin for AlbumsList
impl UnwindSafe for AlbumsList
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