pub struct LoginReportResponse {
pub hourly_counts: Option<Vec<Count>>,
pub total: Option<i64>,
}Expand description
LoginReportResponse : Response for the login report.
Fields§
§hourly_counts: Option<Vec<Count>>§total: Option<i64>Implementations§
Source§impl LoginReportResponse
impl LoginReportResponse
Sourcepub fn new() -> LoginReportResponse
pub fn new() -> LoginReportResponse
Response for the login report.
Trait Implementations§
Source§impl Clone for LoginReportResponse
impl Clone for LoginReportResponse
Source§fn clone(&self) -> LoginReportResponse
fn clone(&self) -> LoginReportResponse
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 LoginReportResponse
impl Debug for LoginReportResponse
Source§impl Default for LoginReportResponse
impl Default for LoginReportResponse
Source§fn default() -> LoginReportResponse
fn default() -> LoginReportResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoginReportResponse
impl<'de> Deserialize<'de> for LoginReportResponse
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 LoginReportResponse
impl PartialEq for LoginReportResponse
Source§impl Serialize for LoginReportResponse
impl Serialize for LoginReportResponse
impl StructuralPartialEq for LoginReportResponse
Auto Trait Implementations§
impl Freeze for LoginReportResponse
impl RefUnwindSafe for LoginReportResponse
impl Send for LoginReportResponse
impl Sync for LoginReportResponse
impl Unpin for LoginReportResponse
impl UnwindSafe for LoginReportResponse
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