pub struct CommitReceipt {
pub transaction_id: Option<TransactionId>,
pub session_object_id: ObjectId,
pub node_ids: BTreeMap<String, NodeId>,
pub object_ids: BTreeMap<String, ObjectId>,
}Expand description
The stable identifiers allocated for a committed session.
Fields§
§transaction_id: Option<TransactionId>§session_object_id: ObjectId§node_ids: BTreeMap<String, NodeId>§object_ids: BTreeMap<String, ObjectId>Trait Implementations§
Source§impl Clone for CommitReceipt
impl Clone for CommitReceipt
Source§fn clone(&self) -> CommitReceipt
fn clone(&self) -> CommitReceipt
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 CommitReceipt
impl Debug for CommitReceipt
Source§impl<'de> Deserialize<'de> for CommitReceipt
impl<'de> Deserialize<'de> for CommitReceipt
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
impl Eq for CommitReceipt
Source§impl PartialEq for CommitReceipt
impl PartialEq for CommitReceipt
Source§impl Serialize for CommitReceipt
impl Serialize for CommitReceipt
impl StructuralPartialEq for CommitReceipt
Auto Trait Implementations§
impl Freeze for CommitReceipt
impl RefUnwindSafe for CommitReceipt
impl Send for CommitReceipt
impl Sync for CommitReceipt
impl Unpin for CommitReceipt
impl UnsafeUnpin for CommitReceipt
impl UnwindSafe for CommitReceipt
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