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