Struct dropbox_sdk::team::BaseDfbReport
source · [−]#[non_exhaustive]pub struct BaseDfbReport {
pub start_date: String,
}Available on crate feature
dbx_team only.Expand description
Base report structure.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.start_date: StringFirst date present in the results as ‘YYYY-MM-DD’ or None.
Implementations
sourceimpl BaseDfbReport
impl BaseDfbReport
Trait Implementations
sourceimpl Clone for BaseDfbReport
impl Clone for BaseDfbReport
sourcefn clone(&self) -> BaseDfbReport
fn clone(&self) -> BaseDfbReport
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for BaseDfbReport
impl Debug for BaseDfbReport
sourceimpl<'de> Deserialize<'de> for BaseDfbReport
impl<'de> Deserialize<'de> for BaseDfbReport
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<BaseDfbReport> for BaseDfbReport
impl PartialEq<BaseDfbReport> for BaseDfbReport
sourcefn eq(&self, other: &BaseDfbReport) -> bool
fn eq(&self, other: &BaseDfbReport) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &BaseDfbReport) -> bool
fn ne(&self, other: &BaseDfbReport) -> bool
This method tests for !=.
sourceimpl Serialize for BaseDfbReport
impl Serialize for BaseDfbReport
impl Eq for BaseDfbReport
impl StructuralEq for BaseDfbReport
impl StructuralPartialEq for BaseDfbReport
Auto Trait Implementations
impl RefUnwindSafe for BaseDfbReport
impl Send for BaseDfbReport
impl Sync for BaseDfbReport
impl Unpin for BaseDfbReport
impl UnwindSafe for BaseDfbReport
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more