pub struct JmapQueryChangesOptions<F: Serialize, S: Serialize> {
pub filter: Option<F>,
pub sort: Option<Vec<S>>,
pub max_changes: Option<u64>,
pub up_to_id: Option<String>,
pub calculate_total: bool,
}Expand description
Options for JmapQueryChanges::new.
Fields§
§filter: Option<F>§sort: Option<Vec<S>>§max_changes: Option<u64>§up_to_id: Option<String>§calculate_total: boolAsk the server to compute total. Off by default.
Trait Implementations§
Source§impl<F: Clone + Serialize, S: Clone + Serialize> Clone for JmapQueryChangesOptions<F, S>
impl<F: Clone + Serialize, S: Clone + Serialize> Clone for JmapQueryChangesOptions<F, S>
Source§fn clone(&self) -> JmapQueryChangesOptions<F, S>
fn clone(&self) -> JmapQueryChangesOptions<F, S>
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<F, S> Freeze for JmapQueryChangesOptions<F, S>where
F: Freeze,
impl<F, S> RefUnwindSafe for JmapQueryChangesOptions<F, S>where
F: RefUnwindSafe,
S: RefUnwindSafe,
impl<F, S> Send for JmapQueryChangesOptions<F, S>
impl<F, S> Sync for JmapQueryChangesOptions<F, S>
impl<F, S> Unpin for JmapQueryChangesOptions<F, S>
impl<F, S> UnsafeUnpin for JmapQueryChangesOptions<F, S>where
F: UnsafeUnpin,
impl<F, S> UnwindSafe for JmapQueryChangesOptions<F, S>where
F: UnwindSafe,
S: 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