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<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 From<&AppResponseFundingConfigOptionsItem> for AppResponseFundingConfigOptionsItem
impl From<&AppResponseFundingConfigOptionsItem> for AppResponseFundingConfigOptionsItem
Source§fn from(value: &AppResponseFundingConfigOptionsItem) -> Self
fn from(value: &AppResponseFundingConfigOptionsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppResponseFundingConfigOptionsItem
impl RefUnwindSafe for AppResponseFundingConfigOptionsItem
impl Send for AppResponseFundingConfigOptionsItem
impl Sync for AppResponseFundingConfigOptionsItem
impl Unpin for AppResponseFundingConfigOptionsItem
impl UnsafeUnpin 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