pub struct HistoricalDdos {
pub status: Option<String>,
pub meta: Option<Box<HistoricalDdosMeta>>,
pub msg: Option<String>,
pub data: Option<Vec<PlatformDdosDataItems>>,
}
Fields§
§status: Option<String>
Whether or not we were able to successfully execute the query.
meta: Option<Box<HistoricalDdosMeta>>
§msg: Option<String>
If the query was not successful, this will provide a string that explains why.
data: Option<Vec<PlatformDdosDataItems>>
A list of entries.
Implementations§
Source§impl HistoricalDdos
impl HistoricalDdos
pub fn new() -> HistoricalDdos
Trait Implementations§
Source§impl Clone for HistoricalDdos
impl Clone for HistoricalDdos
Source§fn clone(&self) -> HistoricalDdos
fn clone(&self) -> HistoricalDdos
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 HistoricalDdos
impl Debug for HistoricalDdos
Source§impl Default for HistoricalDdos
impl Default for HistoricalDdos
Source§fn default() -> HistoricalDdos
fn default() -> HistoricalDdos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoricalDdos
impl<'de> Deserialize<'de> for HistoricalDdos
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 HistoricalDdos
impl PartialEq for HistoricalDdos
Source§impl Serialize for HistoricalDdos
impl Serialize for HistoricalDdos
impl StructuralPartialEq for HistoricalDdos
Auto Trait Implementations§
impl Freeze for HistoricalDdos
impl RefUnwindSafe for HistoricalDdos
impl Send for HistoricalDdos
impl Sync for HistoricalDdos
impl Unpin for HistoricalDdos
impl UnwindSafe for HistoricalDdos
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