pub struct KeyValueDeltaDocument {
pub id: String,
pub instance_id: String,
pub doc_type: String,
pub key: String,
pub value: Option<String>,
pub execution_id: u64,
pub last_updated_at_ms: u64,
pub etag: Option<String>,
pub rid: Option<String>,
pub self_link: Option<String>,
pub ts: Option<u64>,
pub attachments: Option<String>,
}Expand description
Current-execution KV mutation entry.
id = “
Fields§
§id: String§instance_id: String§doc_type: String§key: String§value: Option<String>§execution_id: u64§last_updated_at_ms: u64§etag: Option<String>§rid: Option<String>§self_link: Option<String>§ts: Option<u64>§attachments: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for KeyValueDeltaDocument
impl Clone for KeyValueDeltaDocument
Source§fn clone(&self) -> KeyValueDeltaDocument
fn clone(&self) -> KeyValueDeltaDocument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KeyValueDeltaDocument
impl Debug for KeyValueDeltaDocument
Source§impl<'de> Deserialize<'de> for KeyValueDeltaDocument
impl<'de> Deserialize<'de> for KeyValueDeltaDocument
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 Freeze for KeyValueDeltaDocument
impl RefUnwindSafe for KeyValueDeltaDocument
impl Send for KeyValueDeltaDocument
impl Sync for KeyValueDeltaDocument
impl Unpin for KeyValueDeltaDocument
impl UnsafeUnpin for KeyValueDeltaDocument
impl UnwindSafe for KeyValueDeltaDocument
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