pub struct GetMailboxDetailsResponse {
pub mailbox_quota: Option<i64>,
pub mailbox_size: Option<f64>,
}Fields§
§mailbox_quota: Option<i64>The maximum allowed mailbox size, in MB, for the specified user.
mailbox_size: Option<f64>The current mailbox size, in MB, for the specified user.
Trait Implementations§
Source§impl Clone for GetMailboxDetailsResponse
impl Clone for GetMailboxDetailsResponse
Source§fn clone(&self) -> GetMailboxDetailsResponse
fn clone(&self) -> GetMailboxDetailsResponse
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 GetMailboxDetailsResponse
impl Debug for GetMailboxDetailsResponse
Source§impl Default for GetMailboxDetailsResponse
impl Default for GetMailboxDetailsResponse
Source§fn default() -> GetMailboxDetailsResponse
fn default() -> GetMailboxDetailsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMailboxDetailsResponse
impl<'de> Deserialize<'de> for GetMailboxDetailsResponse
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
impl StructuralPartialEq for GetMailboxDetailsResponse
Auto Trait Implementations§
impl Freeze for GetMailboxDetailsResponse
impl RefUnwindSafe for GetMailboxDetailsResponse
impl Send for GetMailboxDetailsResponse
impl Sync for GetMailboxDetailsResponse
impl Unpin for GetMailboxDetailsResponse
impl UnwindSafe for GetMailboxDetailsResponse
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