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