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