pub struct ReplicationResult {
pub ok: bool,
pub docs_read: u64,
pub docs_written: u64,
pub errors: Vec<String>,
pub last_seq: Seq,
}Expand description
Result of a completed replication.
Fields§
§ok: bool§docs_read: u64§docs_written: u64§errors: Vec<String>§last_seq: SeqTrait Implementations§
Source§impl Clone for ReplicationResult
impl Clone for ReplicationResult
Source§fn clone(&self) -> ReplicationResult
fn clone(&self) -> ReplicationResult
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 moreAuto Trait Implementations§
impl Freeze for ReplicationResult
impl RefUnwindSafe for ReplicationResult
impl Send for ReplicationResult
impl Sync for ReplicationResult
impl Unpin for ReplicationResult
impl UnwindSafe for ReplicationResult
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