pub struct UserIconsForIdRequest {
pub id: UserDiscordPathId,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§id: UserDiscordPathId§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl UserIconsForIdRequest
impl UserIconsForIdRequest
Sourcepub fn builder(id: UserDiscordPathId) -> UserIconsForIdRequestBuilder
pub fn builder(id: UserDiscordPathId) -> UserIconsForIdRequestBuilder
Create an instance of UserIconsForIdRequest using the builder syntax
Trait Implementations§
Source§impl Clone for UserIconsForIdRequest
impl Clone for UserIconsForIdRequest
Source§fn clone(&self) -> UserIconsForIdRequest
fn clone(&self) -> UserIconsForIdRequest
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 UserIconsForIdRequest
impl Debug for UserIconsForIdRequest
Source§impl IntoRequest for UserIconsForIdRequest
impl IntoRequest for UserIconsForIdRequest
Source§type Discriminant = UserDiscordPathId
type Discriminant = UserDiscordPathId
If used in bulk request, the discriminant is used to distinguish the responses. For
endpoints which have no path parameters this will be
().Source§type Response = UserIconsResponse
type Response = UserIconsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for UserIconsForIdRequest
impl RefUnwindSafe for UserIconsForIdRequest
impl Send for UserIconsForIdRequest
impl Sync for UserIconsForIdRequest
impl Unpin for UserIconsForIdRequest
impl UnsafeUnpin for UserIconsForIdRequest
impl UnwindSafe for UserIconsForIdRequest
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