pub struct JmapGetOutput<T> {
pub list: Vec<T>,
pub not_found: Vec<String>,
pub state: String,
pub keep_alive: bool,
}Expand description
Successful terminal output of the JmapGet coroutine.
Fields§
§list: Vec<T>The fetched objects.
not_found: Vec<String>The requested ids the server did not find.
state: StringThe server state the objects were fetched at.
keep_alive: boolWhether the server indicated the connection can be reused.
Trait Implementations§
Source§impl<T: Clone> Clone for JmapGetOutput<T>
impl<T: Clone> Clone for JmapGetOutput<T>
Source§fn clone(&self) -> JmapGetOutput<T>
fn clone(&self) -> JmapGetOutput<T>
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<T> Freeze for JmapGetOutput<T>
impl<T> RefUnwindSafe for JmapGetOutput<T>where
T: RefUnwindSafe,
impl<T> Send for JmapGetOutput<T>where
T: Send,
impl<T> Sync for JmapGetOutput<T>where
T: Sync,
impl<T> Unpin for JmapGetOutput<T>where
T: Unpin,
impl<T> UnsafeUnpin for JmapGetOutput<T>
impl<T> UnwindSafe for JmapGetOutput<T>where
T: UnwindSafe,
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