pub struct TopThreadList {
pub has_next: Option<bool>,
pub items: Option<Vec<TopThread>>,
}Fields§
§has_next: Option<bool>Indicates if there is another page of top threads that can be fetched.
items: Option<Vec<TopThread>>List of top threads.
Implementations§
Source§impl TopThreadList
impl TopThreadList
pub fn new() -> TopThreadList
Trait Implementations§
Source§impl Clone for TopThreadList
impl Clone for TopThreadList
Source§fn clone(&self) -> TopThreadList
fn clone(&self) -> TopThreadList
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 TopThreadList
impl Debug for TopThreadList
Source§impl Default for TopThreadList
impl Default for TopThreadList
Source§fn default() -> TopThreadList
fn default() -> TopThreadList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TopThreadList
impl<'de> Deserialize<'de> for TopThreadList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TopThreadList
impl PartialEq for TopThreadList
Source§impl Serialize for TopThreadList
impl Serialize for TopThreadList
impl StructuralPartialEq for TopThreadList
Auto Trait Implementations§
impl Freeze for TopThreadList
impl RefUnwindSafe for TopThreadList
impl Send for TopThreadList
impl Sync for TopThreadList
impl Unpin for TopThreadList
impl UnsafeUnpin for TopThreadList
impl UnwindSafe for TopThreadList
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