pub struct ThreadListPage {
pub threads: Vec<ThreadMetadata>,
pub next_cursor: Option<String>,
pub backwards_cursor: Option<String>,
}Fields§
§threads: Vec<ThreadMetadata>§next_cursor: Option<String>§backwards_cursor: Option<String>Trait Implementations§
Source§impl Clone for ThreadListPage
impl Clone for ThreadListPage
Source§fn clone(&self) -> ThreadListPage
fn clone(&self) -> ThreadListPage
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 ThreadListPage
impl Debug for ThreadListPage
Source§impl Default for ThreadListPage
impl Default for ThreadListPage
Source§fn default() -> ThreadListPage
fn default() -> ThreadListPage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ThreadListPage
impl RefUnwindSafe for ThreadListPage
impl Send for ThreadListPage
impl Sync for ThreadListPage
impl Unpin for ThreadListPage
impl UnsafeUnpin for ThreadListPage
impl UnwindSafe for ThreadListPage
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