Struct bonsaidb_core::networking::ExecuteKeyOperation
source · pub struct ExecuteKeyOperation {
pub database: String,
pub op: KeyOperation,
}
Expand description
Excutes a key-value store operation.
Fields§
§database: String
The name of the database.
op: KeyOperation
The operation to execute.
Trait Implementations§
source§impl Api for ExecuteKeyOperation
impl Api for ExecuteKeyOperation
source§impl Clone for ExecuteKeyOperation
impl Clone for ExecuteKeyOperation
source§fn clone(&self) -> ExecuteKeyOperation
fn clone(&self) -> ExecuteKeyOperation
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 ExecuteKeyOperation
impl Debug for ExecuteKeyOperation
source§impl<'de> Deserialize<'de> for ExecuteKeyOperation
impl<'de> Deserialize<'de> for ExecuteKeyOperation
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 ExecuteKeyOperation
impl Send for ExecuteKeyOperation
impl Sync for ExecuteKeyOperation
impl Unpin for ExecuteKeyOperation
impl UnwindSafe for ExecuteKeyOperation
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