pub struct UserForumthreadsForIdRequest {
pub id: UserDiscordPathId,
pub api_limit100_default20: Option<ApiLimit100Default20>,
pub api_sort: Option<ApiSort>,
pub api_from: Option<ApiFrom>,
pub api_to: Option<ApiTo>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§id: UserDiscordPathId§api_limit100_default20: Option<ApiLimit100Default20>§api_sort: Option<ApiSort>§api_from: Option<ApiFrom>§api_to: Option<ApiTo>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl UserForumthreadsForIdRequest
impl UserForumthreadsForIdRequest
Sourcepub fn builder(id: UserDiscordPathId) -> UserForumthreadsForIdRequestBuilder
pub fn builder(id: UserDiscordPathId) -> UserForumthreadsForIdRequestBuilder
Create an instance of UserForumthreadsForIdRequest using the builder syntax
Trait Implementations§
Source§impl Clone for UserForumthreadsForIdRequest
impl Clone for UserForumthreadsForIdRequest
Source§fn clone(&self) -> UserForumthreadsForIdRequest
fn clone(&self) -> UserForumthreadsForIdRequest
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 UserForumthreadsForIdRequest
impl Debug for UserForumthreadsForIdRequest
Source§impl IntoRequest for UserForumthreadsForIdRequest
impl IntoRequest for UserForumthreadsForIdRequest
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 = UserForumThreadsResponse
type Response = UserForumThreadsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for UserForumthreadsForIdRequest
impl RefUnwindSafe for UserForumthreadsForIdRequest
impl Send for UserForumthreadsForIdRequest
impl Sync for UserForumthreadsForIdRequest
impl Unpin for UserForumthreadsForIdRequest
impl UnsafeUnpin for UserForumthreadsForIdRequest
impl UnwindSafe for UserForumthreadsForIdRequest
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