pub struct Error4xxTransaction {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub last_transaction_id: Option<String>,
pub related_transaction_ids: Option<Vec<i32>>,
}Fields§
§error_code: Option<String>The code of the error that has occurred. This field may not be returned for some errors.
error_message: Option<String>The human-readable description of the error that has occurred.
last_transaction_id: Option<String>The ID of the most recent Transaction created for the Account
The IDs of all Transactions that were created while satisfying the request.
Implementations§
Source§impl Error4xxTransaction
impl Error4xxTransaction
pub fn new() -> Error4xxTransaction
Trait Implementations§
Source§impl Clone for Error4xxTransaction
impl Clone for Error4xxTransaction
Source§fn clone(&self) -> Error4xxTransaction
fn clone(&self) -> Error4xxTransaction
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 Error4xxTransaction
impl Debug for Error4xxTransaction
Source§impl Default for Error4xxTransaction
impl Default for Error4xxTransaction
Source§fn default() -> Error4xxTransaction
fn default() -> Error4xxTransaction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Error4xxTransaction
impl<'de> Deserialize<'de> for Error4xxTransaction
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 Error4xxTransaction
impl PartialEq for Error4xxTransaction
Source§impl Serialize for Error4xxTransaction
impl Serialize for Error4xxTransaction
impl StructuralPartialEq for Error4xxTransaction
Auto Trait Implementations§
impl Freeze for Error4xxTransaction
impl RefUnwindSafe for Error4xxTransaction
impl Send for Error4xxTransaction
impl Sync for Error4xxTransaction
impl Unpin for Error4xxTransaction
impl UnsafeUnpin for Error4xxTransaction
impl UnwindSafe for Error4xxTransaction
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