pub struct AllDocsOptions {
pub start_key: Option<String>,
pub end_key: Option<String>,
pub key: Option<String>,
pub keys: Option<Vec<String>>,
pub include_docs: bool,
pub descending: bool,
pub skip: u64,
pub limit: Option<u64>,
pub inclusive_end: bool,
pub conflicts: bool,
pub update_seq: bool,
}Fields§
§start_key: Option<String>§end_key: Option<String>§key: Option<String>§keys: Option<Vec<String>>§include_docs: bool§descending: bool§skip: u64§limit: Option<u64>§inclusive_end: bool§conflicts: boolInclude _conflicts for each document (requires include_docs).
update_seq: boolInclude update_seq in the response.
Implementations§
Trait Implementations§
Source§impl Clone for AllDocsOptions
impl Clone for AllDocsOptions
Source§fn clone(&self) -> AllDocsOptions
fn clone(&self) -> AllDocsOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AllDocsOptions
impl Debug for AllDocsOptions
Source§impl Default for AllDocsOptions
impl Default for AllDocsOptions
Source§fn default() -> AllDocsOptions
fn default() -> AllDocsOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AllDocsOptions
impl RefUnwindSafe for AllDocsOptions
impl Send for AllDocsOptions
impl Sync for AllDocsOptions
impl Unpin for AllDocsOptions
impl UnwindSafe for AllDocsOptions
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