pub struct PartnerResponse {
pub fixed: bool,
pub float: bool,
pub req_fixed_refund: bool,
pub req_float_refund: bool,
pub name: String,
pub path: String,
pub fiat_provider: Option<bool>,
pub prohibited_countries: Option<Vec<String>>,
pub kyc_level: Option<String>,
}
Fields§
§fixed: bool
§float: bool
§req_fixed_refund: bool
§req_float_refund: bool
§name: String
§path: String
§fiat_provider: Option<bool>
§prohibited_countries: Option<Vec<String>>
§kyc_level: Option<String>
Trait Implementations§
Source§impl Clone for PartnerResponse
impl Clone for PartnerResponse
Source§fn clone(&self) -> PartnerResponse
fn clone(&self) -> PartnerResponse
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 PartnerResponse
impl Debug for PartnerResponse
Source§impl<'de> Deserialize<'de> for PartnerResponse
impl<'de> Deserialize<'de> for PartnerResponse
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 Freeze for PartnerResponse
impl RefUnwindSafe for PartnerResponse
impl Send for PartnerResponse
impl Sync for PartnerResponse
impl Unpin for PartnerResponse
impl UnwindSafe for PartnerResponse
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