pub struct GetUserProfileAudios { /* private fields */ }Expand description
Returns a list of profile audios for a user.
Implementations§
Source§impl GetUserProfileAudios
impl GetUserProfileAudios
Sourcepub fn with_limit(self, value: Integer) -> Self
pub fn with_limit(self, value: Integer) -> Self
Sets a new limit.
§Arguments
value- Sequential number of the first audio to be returned.
By default, all audios are returned.
Sourcepub fn with_offset(self, value: Integer) -> Self
pub fn with_offset(self, value: Integer) -> Self
Sets a new offset
§Arguments
value- Limits the number of audios to be retrieved.
Values between 1-100 are accepted. Defaults to 100.
Trait Implementations§
Source§impl Clone for GetUserProfileAudios
impl Clone for GetUserProfileAudios
Source§fn clone(&self) -> GetUserProfileAudios
fn clone(&self) -> GetUserProfileAudios
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 GetUserProfileAudios
impl Debug for GetUserProfileAudios
Source§impl Method for GetUserProfileAudios
impl Method for GetUserProfileAudios
Source§type Response = UserProfileAudios
type Response = UserProfileAudios
The type representing a successful result in an API response.
Source§fn into_payload(self) -> Payload
fn into_payload(self) -> Payload
Converts the method into a payload for an HTTP request.
Source§impl Serialize for GetUserProfileAudios
impl Serialize for GetUserProfileAudios
impl Copy for GetUserProfileAudios
Auto Trait Implementations§
impl Freeze for GetUserProfileAudios
impl RefUnwindSafe for GetUserProfileAudios
impl Send for GetUserProfileAudios
impl Sync for GetUserProfileAudios
impl Unpin for GetUserProfileAudios
impl UnsafeUnpin for GetUserProfileAudios
impl UnwindSafe for GetUserProfileAudios
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