pub struct ListTopicRepliesOptions {
pub page: Option<i32>,
pub size: Option<i32>,
}Expand description
Options for listing replies on a topic
Fields§
§page: Option<i32>Page number (default 1)
size: Option<i32>Records per page, range 1~50 (default 20)
Trait Implementations§
Source§impl Clone for ListTopicRepliesOptions
impl Clone for ListTopicRepliesOptions
Source§fn clone(&self) -> ListTopicRepliesOptions
fn clone(&self) -> ListTopicRepliesOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 ListTopicRepliesOptions
impl Debug for ListTopicRepliesOptions
Source§impl Default for ListTopicRepliesOptions
impl Default for ListTopicRepliesOptions
Source§fn default() -> ListTopicRepliesOptions
fn default() -> ListTopicRepliesOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTopicRepliesOptions
impl RefUnwindSafe for ListTopicRepliesOptions
impl Send for ListTopicRepliesOptions
impl Sync for ListTopicRepliesOptions
impl Unpin for ListTopicRepliesOptions
impl UnsafeUnpin for ListTopicRepliesOptions
impl UnwindSafe for ListTopicRepliesOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more