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