Struct dropbox_sdk::team::GetMembershipReport
source · [−]#[non_exhaustive]pub struct GetMembershipReport {
pub start_date: String,
pub team_size: NumberPerDay,
pub pending_invites: NumberPerDay,
pub members_joined: NumberPerDay,
pub suspended_members: NumberPerDay,
pub licenses: NumberPerDay,
}dbx_team only.Expand description
Membership Report Result. Each of the items in the storage report is an array of values, one value per day. If there is no data for a day, then the value will be None.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
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.
team_size: NumberPerDayTeam size, for each day.
pending_invites: NumberPerDayThe number of pending invites to the team, for each day.
members_joined: NumberPerDayThe number of members that joined the team, for each day.
suspended_members: NumberPerDayThe number of suspended team members, for each day.
licenses: NumberPerDayThe total number of licenses the team has, for each day.
Implementations
sourceimpl GetMembershipReport
impl GetMembershipReport
pub fn new(
start_date: String,
team_size: NumberPerDay,
pending_invites: NumberPerDay,
members_joined: NumberPerDay,
suspended_members: NumberPerDay,
licenses: NumberPerDay
) -> Self
Trait Implementations
sourceimpl Clone for GetMembershipReport
impl Clone for GetMembershipReport
sourcefn clone(&self) -> GetMembershipReport
fn clone(&self) -> GetMembershipReport
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 GetMembershipReport
impl Debug for GetMembershipReport
sourceimpl<'de> Deserialize<'de> for GetMembershipReport
impl<'de> Deserialize<'de> for GetMembershipReport
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<GetMembershipReport> for GetMembershipReport
impl PartialEq<GetMembershipReport> for GetMembershipReport
sourcefn eq(&self, other: &GetMembershipReport) -> bool
fn eq(&self, other: &GetMembershipReport) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetMembershipReport) -> bool
fn ne(&self, other: &GetMembershipReport) -> bool
This method tests for !=.
sourceimpl Serialize for GetMembershipReport
impl Serialize for GetMembershipReport
impl Eq for GetMembershipReport
impl StructuralEq for GetMembershipReport
impl StructuralPartialEq for GetMembershipReport
Auto Trait Implementations
impl RefUnwindSafe for GetMembershipReport
impl Send for GetMembershipReport
impl Sync for GetMembershipReport
impl Unpin for GetMembershipReport
impl UnwindSafe for GetMembershipReport
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