pub struct ForumThreadsRequest {
pub api_limit100: Option<ApiLimit100>,
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§
§api_limit100: Option<ApiLimit100>§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 ForumThreadsRequest
impl ForumThreadsRequest
Sourcepub fn builder() -> ForumThreadsRequestBuilder
pub fn builder() -> ForumThreadsRequestBuilder
Create an instance of ForumThreadsRequest using the builder syntax
Trait Implementations§
Source§impl Clone for ForumThreadsRequest
impl Clone for ForumThreadsRequest
Source§fn clone(&self) -> ForumThreadsRequest
fn clone(&self) -> ForumThreadsRequest
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 ForumThreadsRequest
impl Debug for ForumThreadsRequest
Source§impl IntoRequest for ForumThreadsRequest
impl IntoRequest for ForumThreadsRequest
Source§type Discriminant = ()
type Discriminant = ()
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 = ForumThreadsResponse
type Response = ForumThreadsResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for ForumThreadsRequest
impl RefUnwindSafe for ForumThreadsRequest
impl Send for ForumThreadsRequest
impl Sync for ForumThreadsRequest
impl Unpin for ForumThreadsRequest
impl UnsafeUnpin for ForumThreadsRequest
impl UnwindSafe for ForumThreadsRequest
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