Struct couchdb::Changes [] [src]

pub struct Changes {
    pub last_seq: u64,
    pub results: Vec<ChangeResult>,
    // some fields omitted
}

List of changes to documents within a database.

Fields

last_seq

Sequence number for the most recent change.

results

Changes in the change list.

Trait Implementations

impl Deserialize for Changes

fn deserialize<D>(d: &mut D) -> Result<Self, D::Error> where D: Deserializer

Derived Implementations

impl PartialEq for Changes

fn eq(&self, __arg_0: &Changes) -> bool

fn ne(&self, __arg_0: &Changes) -> bool

impl Debug for Changes

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for Changes

fn clone(&self) -> Changes

fn clone_from(&mut self, source: &Self)