Struct paystack::TransactionStatusList
source · pub struct TransactionStatusList {
pub status: bool,
pub message: String,
pub data: Vec<TransactionStatusData>,
pub meta: MetaData,
}
Expand description
This struct represents a list of transaction status.
Fields§
§status: bool
This lets you know if your request was successful or not.
message: String
This is a summary of the response and its status.
data: Vec<TransactionStatusData>
This contains the results of your request. In this case, it is a vector of objects.
meta: MetaData
The meta key is used to provide context for the contents of the data key.
Trait Implementations§
source§impl Clone for TransactionStatusList
impl Clone for TransactionStatusList
source§fn clone(&self) -> TransactionStatusList
fn clone(&self) -> TransactionStatusList
Returns a copy 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 TransactionStatusList
impl Debug for TransactionStatusList
source§impl<'de> Deserialize<'de> for TransactionStatusList
impl<'de> Deserialize<'de> for TransactionStatusList
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 RefUnwindSafe for TransactionStatusList
impl Send for TransactionStatusList
impl Sync for TransactionStatusList
impl Unpin for TransactionStatusList
impl UnwindSafe for TransactionStatusList
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