pub struct TransactionId {
pub transaction_id: Option<String>,
}Expand description
TransactionId : Response containing the transaction ID.
Fields§
§transaction_id: Option<String>GUID assigned by Amazon to identify this transaction. This value can be used with the Transaction Status API to return the status of this transaction.
Implementations§
Source§impl TransactionId
impl TransactionId
Sourcepub fn new() -> TransactionId
pub fn new() -> TransactionId
Response containing the transaction ID.
Trait Implementations§
Source§impl Clone for TransactionId
impl Clone for TransactionId
Source§fn clone(&self) -> TransactionId
fn clone(&self) -> TransactionId
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 TransactionId
impl Debug for TransactionId
Source§impl Default for TransactionId
impl Default for TransactionId
Source§fn default() -> TransactionId
fn default() -> TransactionId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionId
impl<'de> Deserialize<'de> for TransactionId
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 TransactionId
impl PartialEq for TransactionId
Source§impl Serialize for TransactionId
impl Serialize for TransactionId
impl StructuralPartialEq for TransactionId
Auto Trait Implementations§
impl Freeze for TransactionId
impl RefUnwindSafe for TransactionId
impl Send for TransactionId
impl Sync for TransactionId
impl Unpin for TransactionId
impl UnwindSafe for TransactionId
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