pub struct JmapIdentitySetOutput {
pub new_state: String,
pub created: BTreeMap<String, JmapIdentity>,
pub updated: BTreeMap<String, Option<JmapIdentity>>,
pub destroyed: Vec<String>,
pub not_created: BTreeMap<String, JmapIdentitySetItemError>,
pub not_updated: BTreeMap<String, JmapIdentitySetItemError>,
pub not_destroyed: BTreeMap<String, JmapIdentitySetItemError>,
pub keep_alive: bool,
}Expand description
Successful terminal output of JmapIdentitySet.
Fields§
§new_state: String§created: BTreeMap<String, JmapIdentity>§updated: BTreeMap<String, Option<JmapIdentity>>§destroyed: Vec<String>§not_created: BTreeMap<String, JmapIdentitySetItemError>§not_updated: BTreeMap<String, JmapIdentitySetItemError>§not_destroyed: BTreeMap<String, JmapIdentitySetItemError>§keep_alive: boolTrait Implementations§
Source§impl Clone for JmapIdentitySetOutput
impl Clone for JmapIdentitySetOutput
Source§fn clone(&self) -> JmapIdentitySetOutput
fn clone(&self) -> JmapIdentitySetOutput
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 JmapIdentitySetOutput
impl RefUnwindSafe for JmapIdentitySetOutput
impl Send for JmapIdentitySetOutput
impl Sync for JmapIdentitySetOutput
impl Unpin for JmapIdentitySetOutput
impl UnsafeUnpin for JmapIdentitySetOutput
impl UnwindSafe for JmapIdentitySetOutput
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