pub struct UserProfileAudios {
pub total_count: u32,
pub audios: Vec<Audio>,
}Expand description
Container for a user’s profile audios.
Fields§
§total_count: u32Total number of profile audios.
audios: Vec<Audio>Requested profile audios.
Trait Implementations§
Source§impl Clone for UserProfileAudios
impl Clone for UserProfileAudios
Source§fn clone(&self) -> UserProfileAudios
fn clone(&self) -> UserProfileAudios
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 UserProfileAudios
impl Debug for UserProfileAudios
Source§impl<'de> Deserialize<'de> for UserProfileAudios
impl<'de> Deserialize<'de> for UserProfileAudios
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UserProfileAudios
impl RefUnwindSafe for UserProfileAudios
impl Send for UserProfileAudios
impl Sync for UserProfileAudios
impl Unpin for UserProfileAudios
impl UnsafeUnpin for UserProfileAudios
impl UnwindSafe for UserProfileAudios
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