pub struct AcquiringAlgorithmResponse {
pub code: Option<i64>,
pub msg: Option<String>,
pub data: Option<Vec<AcquiringAlgorithmResponseDataInner>>,
}Fields§
§code: Option<i64>§msg: Option<String>§data: Option<Vec<AcquiringAlgorithmResponseDataInner>>Implementations§
Source§impl AcquiringAlgorithmResponse
impl AcquiringAlgorithmResponse
pub fn new() -> AcquiringAlgorithmResponse
Trait Implementations§
Source§impl Clone for AcquiringAlgorithmResponse
impl Clone for AcquiringAlgorithmResponse
Source§fn clone(&self) -> AcquiringAlgorithmResponse
fn clone(&self) -> AcquiringAlgorithmResponse
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 AcquiringAlgorithmResponse
impl Debug for AcquiringAlgorithmResponse
Source§impl Default for AcquiringAlgorithmResponse
impl Default for AcquiringAlgorithmResponse
Source§fn default() -> AcquiringAlgorithmResponse
fn default() -> AcquiringAlgorithmResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AcquiringAlgorithmResponse
impl<'de> Deserialize<'de> for AcquiringAlgorithmResponse
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 AcquiringAlgorithmResponse
impl PartialEq for AcquiringAlgorithmResponse
Source§fn eq(&self, other: &AcquiringAlgorithmResponse) -> bool
fn eq(&self, other: &AcquiringAlgorithmResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AcquiringAlgorithmResponse
Auto Trait Implementations§
impl Freeze for AcquiringAlgorithmResponse
impl RefUnwindSafe for AcquiringAlgorithmResponse
impl Send for AcquiringAlgorithmResponse
impl Sync for AcquiringAlgorithmResponse
impl Unpin for AcquiringAlgorithmResponse
impl UnsafeUnpin for AcquiringAlgorithmResponse
impl UnwindSafe for AcquiringAlgorithmResponse
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