pub struct CompletionReceipt {
pub transaction_id: Option<String>,
pub session_object_id: String,
pub session_id: Option<String>,
pub session_type: Option<String>,
pub created_at: Option<String>,
pub committed_at: Option<String>,
pub node_ids: BTreeMap<String, String>,
pub object_ids: BTreeMap<String, String>,
}Fields§
§transaction_id: Option<String>§session_object_id: String§session_id: Option<String>§session_type: Option<String>§created_at: Option<String>§committed_at: Option<String>§node_ids: BTreeMap<String, String>§object_ids: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for CompletionReceipt
impl Clone for CompletionReceipt
Source§fn clone(&self) -> CompletionReceipt
fn clone(&self) -> CompletionReceipt
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 CompletionReceipt
impl Debug for CompletionReceipt
Source§impl<'de> Deserialize<'de> for CompletionReceipt
impl<'de> Deserialize<'de> for CompletionReceipt
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 CompletionReceipt
impl RefUnwindSafe for CompletionReceipt
impl Send for CompletionReceipt
impl Sync for CompletionReceipt
impl Unpin for CompletionReceipt
impl UnsafeUnpin for CompletionReceipt
impl UnwindSafe for CompletionReceipt
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