Enum bonsaidb_core::transaction::Changes
source · pub enum Changes {
Documents(DocumentChanges),
Keys(Vec<ChangedKey>),
}
Expand description
A list of changes.
Variants§
Documents(DocumentChanges)
A list of changed documents.
Keys(Vec<ChangedKey>)
A list of changed keys.
Implementations§
source§impl Changes
impl Changes
sourcepub const fn documents(&self) -> Option<&DocumentChanges>
pub const fn documents(&self) -> Option<&DocumentChanges>
Returns the list of documents changed in this transaction, or None if the transaction was not a document transaction.
sourcepub fn keys(&self) -> Option<&[ChangedKey]>
pub fn keys(&self) -> Option<&[ChangedKey]>
Returns the list of keys changed in this transaction, or None if the
transaction was not a KeyValue
transaction.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Changes
impl<'de> Deserialize<'de> for Changes
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 Changes
impl Send for Changes
impl Sync for Changes
impl Unpin for Changes
impl UnwindSafe for Changes
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