pub struct LikeSource {
pub id: String,
pub title: String,
pub url: String,
pub tracks: Vec<OwnedAlbum>,
}Fields§
§id: String§title: String§url: String§tracks: Vec<OwnedAlbum>Trait Implementations§
Source§impl Clone for LikeSource
impl Clone for LikeSource
Source§fn clone(&self) -> LikeSource
fn clone(&self) -> LikeSource
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 LikeSource
impl RefUnwindSafe for LikeSource
impl Send for LikeSource
impl Sync for LikeSource
impl Unpin for LikeSource
impl UnsafeUnpin for LikeSource
impl UnwindSafe for LikeSource
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