pub struct ListMailboxPermissionsResponse {
pub next_token: Option<String>,
pub permissions: Option<Vec<Permission>>,
}Fields§
§next_token: Option<String>The token to use to retrieve the next page of results. The value is "null" when there are no more results to return.
permissions: Option<Vec<Permission>>One page of the user, group, or resource mailbox permissions.
Trait Implementations§
Source§impl Clone for ListMailboxPermissionsResponse
impl Clone for ListMailboxPermissionsResponse
Source§fn clone(&self) -> ListMailboxPermissionsResponse
fn clone(&self) -> ListMailboxPermissionsResponse
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 Default for ListMailboxPermissionsResponse
impl Default for ListMailboxPermissionsResponse
Source§fn default() -> ListMailboxPermissionsResponse
fn default() -> ListMailboxPermissionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListMailboxPermissionsResponse
impl<'de> Deserialize<'de> for ListMailboxPermissionsResponse
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
Source§impl PartialEq for ListMailboxPermissionsResponse
impl PartialEq for ListMailboxPermissionsResponse
Source§fn eq(&self, other: &ListMailboxPermissionsResponse) -> bool
fn eq(&self, other: &ListMailboxPermissionsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListMailboxPermissionsResponse
Auto Trait Implementations§
impl Freeze for ListMailboxPermissionsResponse
impl RefUnwindSafe for ListMailboxPermissionsResponse
impl Send for ListMailboxPermissionsResponse
impl Sync for ListMailboxPermissionsResponse
impl Unpin for ListMailboxPermissionsResponse
impl UnwindSafe for ListMailboxPermissionsResponse
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