pub struct StartTransactionResult {
pub transaction_id: Option<String>,
}Expand description
Contains the details of the started transaction.
Fields§
§transaction_id: Option<String>The transaction ID of the started transaction.
Trait Implementations§
Source§impl Clone for StartTransactionResult
impl Clone for StartTransactionResult
Source§fn clone(&self) -> StartTransactionResult
fn clone(&self) -> StartTransactionResult
Returns a duplicate 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 StartTransactionResult
impl Debug for StartTransactionResult
Source§impl Default for StartTransactionResult
impl Default for StartTransactionResult
Source§fn default() -> StartTransactionResult
fn default() -> StartTransactionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartTransactionResult
impl<'de> Deserialize<'de> for StartTransactionResult
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
Source§impl PartialEq for StartTransactionResult
impl PartialEq for StartTransactionResult
impl StructuralPartialEq for StartTransactionResult
Auto Trait Implementations§
impl Freeze for StartTransactionResult
impl RefUnwindSafe for StartTransactionResult
impl Send for StartTransactionResult
impl Sync for StartTransactionResult
impl Unpin for StartTransactionResult
impl UnwindSafe for StartTransactionResult
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