pub struct JmapEmailSubmissionSetOutput {
pub new_state: String,
pub created: BTreeMap<String, JmapEmailSubmission>,
pub not_created: BTreeMap<String, JmapEmailSubmissionSetItemError>,
pub keep_alive: bool,
}Expand description
Successful terminal output of JmapEmailSubmissionSet.
Fields§
§new_state: StringThe new server state after the call.
created: BTreeMap<String, JmapEmailSubmission>The created submissions, keyed by client id.
not_created: BTreeMap<String, JmapEmailSubmissionSetItemError>The failed creates, keyed by client id.
keep_alive: boolWhether the server indicated the connection can be reused.
Trait Implementations§
Source§impl Clone for JmapEmailSubmissionSetOutput
impl Clone for JmapEmailSubmissionSetOutput
Source§fn clone(&self) -> JmapEmailSubmissionSetOutput
fn clone(&self) -> JmapEmailSubmissionSetOutput
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 moreAuto Trait Implementations§
impl Freeze for JmapEmailSubmissionSetOutput
impl RefUnwindSafe for JmapEmailSubmissionSetOutput
impl Send for JmapEmailSubmissionSetOutput
impl Sync for JmapEmailSubmissionSetOutput
impl Unpin for JmapEmailSubmissionSetOutput
impl UnsafeUnpin for JmapEmailSubmissionSetOutput
impl UnwindSafe for JmapEmailSubmissionSetOutput
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