pub struct NodeMutationResponse {
pub revision: i64,
pub node: PageMapNode,
}Expand description
The shared mutation envelope for node writes: the new revision plus the touched row, so the client can chain edits without a round-trip.
Fields§
§revision: i64§node: PageMapNodeTrait Implementations§
Source§impl Clone for NodeMutationResponse
impl Clone for NodeMutationResponse
Source§fn clone(&self) -> NodeMutationResponse
fn clone(&self) -> NodeMutationResponse
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 NodeMutationResponse
impl Debug for NodeMutationResponse
Source§impl<'de> Deserialize<'de> for NodeMutationResponse
impl<'de> Deserialize<'de> for NodeMutationResponse
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 NodeMutationResponse
impl RefUnwindSafe for NodeMutationResponse
impl Send for NodeMutationResponse
impl Sync for NodeMutationResponse
impl Unpin for NodeMutationResponse
impl UnsafeUnpin for NodeMutationResponse
impl UnwindSafe for NodeMutationResponse
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