pub struct ApplicationStats {
pub app_id: String,
pub app_uid: Option<String>,
pub message_destinations: i32,
}
Fields§
§app_id: String
The app’s ID
app_uid: Option<String>
The app’s UID
message_destinations: i32
Implementations§
Source§impl ApplicationStats
impl ApplicationStats
pub fn new(app_id: String, message_destinations: i32) -> ApplicationStats
Trait Implementations§
Source§impl Clone for ApplicationStats
impl Clone for ApplicationStats
Source§fn clone(&self) -> ApplicationStats
fn clone(&self) -> ApplicationStats
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 ApplicationStats
impl Debug for ApplicationStats
Source§impl Default for ApplicationStats
impl Default for ApplicationStats
Source§fn default() -> ApplicationStats
fn default() -> ApplicationStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationStats
impl<'de> Deserialize<'de> for ApplicationStats
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 ApplicationStats
impl PartialEq for ApplicationStats
Source§impl Serialize for ApplicationStats
impl Serialize for ApplicationStats
impl StructuralPartialEq for ApplicationStats
Auto Trait Implementations§
impl Freeze for ApplicationStats
impl RefUnwindSafe for ApplicationStats
impl Send for ApplicationStats
impl Sync for ApplicationStats
impl Unpin for ApplicationStats
impl UnwindSafe for ApplicationStats
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