pub struct AdminUserExportRequest {
pub date_filter_type: DateFilterType,
pub from_date: Option<DateTime<Utc>>,
pub to_date: Option<DateTime<Utc>>,
}
Expand description
Request to export data
Fields§
§date_filter_type: DateFilterType
§from_date: Option<DateTime<Utc>>
Optionally the date to export data from
to_date: Option<DateTime<Utc>>
Optionally the date to export data to
Trait Implementations§
Source§impl Clone for AdminUserExportRequest
impl Clone for AdminUserExportRequest
Source§fn clone(&self) -> AdminUserExportRequest
fn clone(&self) -> AdminUserExportRequest
Returns a copy 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 AdminUserExportRequest
impl Debug for AdminUserExportRequest
Source§impl<'de> Deserialize<'de> for AdminUserExportRequest
impl<'de> Deserialize<'de> for AdminUserExportRequest
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
Auto Trait Implementations§
impl Freeze for AdminUserExportRequest
impl RefUnwindSafe for AdminUserExportRequest
impl Send for AdminUserExportRequest
impl Sync for AdminUserExportRequest
impl Unpin for AdminUserExportRequest
impl UnwindSafe for AdminUserExportRequest
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