#[non_exhaustive]pub struct EmailImportResponse {
pub account_id: Id,
pub old_state: Option<State>,
pub new_state: State,
pub created: Option<HashMap<String, EmailImportCreated>>,
pub not_created: Option<HashMap<String, SetError>>,
pub extra: Map<String, Value>,
}Expand description
Response to Email/import (RFC 8621 §4.8).
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.account_id: IdThe account this response refers to.
old_state: Option<State>State token before the import, or null if the server cannot supply one.
new_state: StateState token after the import.
created: Option<HashMap<String, EmailImportCreated>>Successfully imported Emails keyed by creation id.
not_created: Option<HashMap<String, SetError>>Failures keyed by creation id (RFC 8621 §4.8 errors include
alreadyExists, invalidProperties, overQuota, invalidEmail).
extra: Map<String, Value>Catch-all for vendor / site / private extension fields not covered by the typed fields above. Preserves unknown fields across deserialize/serialize round-trip per workspace extras-preservation policy (see workspace AGENTS.md).
Trait Implementations§
Source§impl Clone for EmailImportResponse
impl Clone for EmailImportResponse
Source§fn clone(&self) -> EmailImportResponse
fn clone(&self) -> EmailImportResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmailImportResponse
impl Debug for EmailImportResponse
Source§impl<'de> Deserialize<'de> for EmailImportResponse
impl<'de> Deserialize<'de> for EmailImportResponse
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
Auto Trait Implementations§
impl Freeze for EmailImportResponse
impl RefUnwindSafe for EmailImportResponse
impl Send for EmailImportResponse
impl Sync for EmailImportResponse
impl Unpin for EmailImportResponse
impl UnsafeUnpin for EmailImportResponse
impl UnwindSafe for EmailImportResponse
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