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