pub struct JmapVacationResponseSetOutput {
pub new_state: String,
pub updated: Option<JmapVacationResponse>,
pub keep_alive: bool,
}Expand description
Successful terminal output of JmapVacationResponseSet.
Fields§
§new_state: StringThe new server state after the call.
updated: Option<JmapVacationResponse>The updated singleton, when the server echoed it back.
keep_alive: boolWhether the server indicated the connection can be reused.
Trait Implementations§
Source§impl Clone for JmapVacationResponseSetOutput
impl Clone for JmapVacationResponseSetOutput
Source§fn clone(&self) -> JmapVacationResponseSetOutput
fn clone(&self) -> JmapVacationResponseSetOutput
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 JmapVacationResponseSetOutput
impl RefUnwindSafe for JmapVacationResponseSetOutput
impl Send for JmapVacationResponseSetOutput
impl Sync for JmapVacationResponseSetOutput
impl Unpin for JmapVacationResponseSetOutput
impl UnsafeUnpin for JmapVacationResponseSetOutput
impl UnwindSafe for JmapVacationResponseSetOutput
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