pub enum ChangesStyle {
MainOnly,
AllDocs,
}Expand description
Controls which revisions appear in each change event.
Variants§
MainOnly
Default: only the winning revision.
AllDocs
All leaf revisions (including deleted ones), matching CouchDB.
Trait Implementations§
Source§impl Clone for ChangesStyle
impl Clone for ChangesStyle
Source§fn clone(&self) -> ChangesStyle
fn clone(&self) -> ChangesStyle
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 moreSource§impl Debug for ChangesStyle
impl Debug for ChangesStyle
Source§impl Default for ChangesStyle
impl Default for ChangesStyle
Source§fn default() -> ChangesStyle
fn default() -> ChangesStyle
Returns the “default value” for a type. Read more
impl Eq for ChangesStyle
Source§impl PartialEq for ChangesStyle
impl PartialEq for ChangesStyle
Source§fn eq(&self, other: &ChangesStyle) -> bool
fn eq(&self, other: &ChangesStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChangesStyle
Auto Trait Implementations§
impl Freeze for ChangesStyle
impl RefUnwindSafe for ChangesStyle
impl Send for ChangesStyle
impl Sync for ChangesStyle
impl Unpin for ChangesStyle
impl UnsafeUnpin for ChangesStyle
impl UnwindSafe for ChangesStyle
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