pub struct OrganizationReport {
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub date: Option<String>,
pub report_data: Option<String>,
pub creation_date: Option<String>,
pub content_encryption_key: Option<String>,
}
Fields§
§id: Option<Uuid>
§organization_id: Option<Uuid>
§date: Option<String>
§report_data: Option<String>
§creation_date: Option<String>
§content_encryption_key: Option<String>
Implementations§
Source§impl OrganizationReport
impl OrganizationReport
pub fn new() -> OrganizationReport
Trait Implementations§
Source§impl Clone for OrganizationReport
impl Clone for OrganizationReport
Source§fn clone(&self) -> OrganizationReport
fn clone(&self) -> OrganizationReport
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 OrganizationReport
impl Debug for OrganizationReport
Source§impl Default for OrganizationReport
impl Default for OrganizationReport
Source§fn default() -> OrganizationReport
fn default() -> OrganizationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationReport
impl<'de> Deserialize<'de> for OrganizationReport
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 OrganizationReport
impl PartialEq for OrganizationReport
Source§impl Serialize for OrganizationReport
impl Serialize for OrganizationReport
impl StructuralPartialEq for OrganizationReport
Auto Trait Implementations§
impl Freeze for OrganizationReport
impl RefUnwindSafe for OrganizationReport
impl Send for OrganizationReport
impl Sync for OrganizationReport
impl Unpin for OrganizationReport
impl UnwindSafe for OrganizationReport
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