pub struct GetTransactionResponse {
pub payload: Option<Box<TransactionStatus>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetTransactionResponse : The response schema for the getTransaction operation.
Fields§
§payload: Option<Box<TransactionStatus>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetTransactionResponse
impl GetTransactionResponse
Sourcepub fn new() -> GetTransactionResponse
pub fn new() -> GetTransactionResponse
The response schema for the getTransaction operation.
Trait Implementations§
Source§impl Clone for GetTransactionResponse
impl Clone for GetTransactionResponse
Source§fn clone(&self) -> GetTransactionResponse
fn clone(&self) -> GetTransactionResponse
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 GetTransactionResponse
impl Debug for GetTransactionResponse
Source§impl Default for GetTransactionResponse
impl Default for GetTransactionResponse
Source§fn default() -> GetTransactionResponse
fn default() -> GetTransactionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTransactionResponse
impl<'de> Deserialize<'de> for GetTransactionResponse
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 GetTransactionResponse
impl PartialEq for GetTransactionResponse
Source§impl Serialize for GetTransactionResponse
impl Serialize for GetTransactionResponse
impl StructuralPartialEq for GetTransactionResponse
Auto Trait Implementations§
impl Freeze for GetTransactionResponse
impl RefUnwindSafe for GetTransactionResponse
impl Send for GetTransactionResponse
impl Sync for GetTransactionResponse
impl Unpin for GetTransactionResponse
impl UnwindSafe for GetTransactionResponse
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