pub struct StaticDataPageActiveEventSchema {
pub data: Vec<ActiveEventSchema>,
pub total: Option<u32>,
pub page: Option<u32>,
pub size: Option<u32>,
pub pages: Option<u32>,
}Fields§
§data: Vec<ActiveEventSchema>§total: Option<u32>§page: Option<u32>§size: Option<u32>§pages: Option<u32>Implementations§
Source§impl StaticDataPageActiveEventSchema
impl StaticDataPageActiveEventSchema
pub fn new(data: Vec<ActiveEventSchema>) -> StaticDataPageActiveEventSchema
Trait Implementations§
Source§impl Clone for StaticDataPageActiveEventSchema
impl Clone for StaticDataPageActiveEventSchema
Source§fn clone(&self) -> StaticDataPageActiveEventSchema
fn clone(&self) -> StaticDataPageActiveEventSchema
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 Default for StaticDataPageActiveEventSchema
impl Default for StaticDataPageActiveEventSchema
Source§fn default() -> StaticDataPageActiveEventSchema
fn default() -> StaticDataPageActiveEventSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StaticDataPageActiveEventSchema
impl<'de> Deserialize<'de> for StaticDataPageActiveEventSchema
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 StaticDataPageActiveEventSchema
impl PartialEq for StaticDataPageActiveEventSchema
Source§fn eq(&self, other: &StaticDataPageActiveEventSchema) -> bool
fn eq(&self, other: &StaticDataPageActiveEventSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StaticDataPageActiveEventSchema
Auto Trait Implementations§
impl Freeze for StaticDataPageActiveEventSchema
impl RefUnwindSafe for StaticDataPageActiveEventSchema
impl Send for StaticDataPageActiveEventSchema
impl Sync for StaticDataPageActiveEventSchema
impl Unpin for StaticDataPageActiveEventSchema
impl UnsafeUnpin for StaticDataPageActiveEventSchema
impl UnwindSafe for StaticDataPageActiveEventSchema
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