pub struct TopDmList {
pub has_next: Option<bool>,
pub items: Option<Vec<TopDm>>,
}Fields§
§has_next: Option<bool>Indicates if there is another page of top DMs that can be fetched.
items: Option<Vec<TopDm>>List of top DMs.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TopDmList
impl<'de> Deserialize<'de> for TopDmList
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
impl StructuralPartialEq for TopDmList
Auto Trait Implementations§
impl Freeze for TopDmList
impl RefUnwindSafe for TopDmList
impl Send for TopDmList
impl Sync for TopDmList
impl Unpin for TopDmList
impl UnsafeUnpin for TopDmList
impl UnwindSafe for TopDmList
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