pub struct AppResponseFundingConfigOptionsItem {
pub method: String,
pub provider: String,
}Expand description
AppResponseFundingConfigOptionsItem
JSON schema
{
"type": "object",
"required": [
"method",
"provider"
],
"properties": {
"method": {
"type": "string"
},
"provider": {
"type": "string"
}
}
}Fields§
§method: String§provider: StringTrait Implementations§
Source§impl Clone for AppResponseFundingConfigOptionsItem
impl Clone for AppResponseFundingConfigOptionsItem
Source§fn clone(&self) -> AppResponseFundingConfigOptionsItem
fn clone(&self) -> AppResponseFundingConfigOptionsItem
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<'de> Deserialize<'de> for AppResponseFundingConfigOptionsItem
impl<'de> Deserialize<'de> for AppResponseFundingConfigOptionsItem
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppResponseFundingConfigOptionsItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppResponseFundingConfigOptionsItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&AppResponseFundingConfigOptionsItem> for AppResponseFundingConfigOptionsItem
impl From<&AppResponseFundingConfigOptionsItem> for AppResponseFundingConfigOptionsItem
Source§fn from(
value: &AppResponseFundingConfigOptionsItem,
) -> AppResponseFundingConfigOptionsItem
fn from( value: &AppResponseFundingConfigOptionsItem, ) -> AppResponseFundingConfigOptionsItem
Converts to this type from the input type.
Source§impl Serialize for AppResponseFundingConfigOptionsItem
impl Serialize for AppResponseFundingConfigOptionsItem
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AppResponseFundingConfigOptionsItem
impl RefUnwindSafe for AppResponseFundingConfigOptionsItem
impl Send for AppResponseFundingConfigOptionsItem
impl Sync for AppResponseFundingConfigOptionsItem
impl Unpin for AppResponseFundingConfigOptionsItem
impl UnwindSafe for AppResponseFundingConfigOptionsItem
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