Struct bonsaidb::core::transaction::ChangedKey
pub struct ChangedKey {
pub namespace: Option<String>,
pub key: String,
pub deleted: bool,
}
Expand description
A record of a changed KeyValue
entry.
Fields§
§namespace: Option<String>
The namespace of the key.
key: String
The key that was changed.
deleted: bool
True if the key was deleted.
Trait Implementations§
§impl Clone for ChangedKey
impl Clone for ChangedKey
§fn clone(&self) -> ChangedKey
fn clone(&self) -> ChangedKey
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 more§impl Debug for ChangedKey
impl Debug for ChangedKey
§impl<'de> Deserialize<'de> for ChangedKey
impl<'de> Deserialize<'de> for ChangedKey
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ChangedKey, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ChangedKey, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for ChangedKey
impl Serialize for ChangedKey
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ChangedKey
impl Send for ChangedKey
impl Sync for ChangedKey
impl Unpin for ChangedKey
impl UnwindSafe for ChangedKey
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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