Struct bonsaidb_core::transaction::ChangedDocument  
source · pub struct ChangedDocument {
    pub collection: u16,
    pub id: DocumentId,
    pub deleted: bool,
}Expand description
A record of a changed document.
Fields§
§collection: u16The index of the CollectionName within the collections field of Changes::Documents.
id: DocumentIdThe id of the changed Document.
deleted: boolIf the Document has been deleted, this will be true.
Trait Implementations§
source§impl Clone for ChangedDocument
 
impl Clone for ChangedDocument
source§fn clone(&self) -> ChangedDocument
 
fn clone(&self) -> ChangedDocument
Returns a copy 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 ChangedDocument
 
impl Debug for ChangedDocument
source§impl<'de> Deserialize<'de> for ChangedDocument
 
impl<'de> Deserialize<'de> for ChangedDocument
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ChangedDocument
impl Send for ChangedDocument
impl Sync for ChangedDocument
impl Unpin for ChangedDocument
impl UnwindSafe for ChangedDocument
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