#[non_exhaustive]pub struct GetMailboxDetailsInput {
pub organization_id: Option<String>,
pub user_id: Option<String>,
}
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.organization_id: Option<String>
The identifier for the organization that contains the user whose mailbox details are being requested.
user_id: Option<String>
The identifier for the user whose mailbox details are being requested.
Implementations§
source§impl GetMailboxDetailsInput
impl GetMailboxDetailsInput
sourcepub fn builder() -> GetMailboxDetailsInputBuilder
pub fn builder() -> GetMailboxDetailsInputBuilder
Creates a new builder-style object to manufacture GetMailboxDetailsInput
.
Trait Implementations§
source§impl Clone for GetMailboxDetailsInput
impl Clone for GetMailboxDetailsInput
source§fn clone(&self) -> GetMailboxDetailsInput
fn clone(&self) -> GetMailboxDetailsInput
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 GetMailboxDetailsInput
impl Debug for GetMailboxDetailsInput
source§impl PartialEq<GetMailboxDetailsInput> for GetMailboxDetailsInput
impl PartialEq<GetMailboxDetailsInput> for GetMailboxDetailsInput
source§fn eq(&self, other: &GetMailboxDetailsInput) -> bool
fn eq(&self, other: &GetMailboxDetailsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMailboxDetailsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetMailboxDetailsInput
impl Send for GetMailboxDetailsInput
impl Sync for GetMailboxDetailsInput
impl Unpin for GetMailboxDetailsInput
impl UnwindSafe for GetMailboxDetailsInput
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