pub struct BankPolicyResponse {
pub bank_id: String,
pub document: Map<String, Value>,
}Expand description
Bank policy resource.
JSON schema
{
"title": "BankPolicyResponse",
"description": "Bank policy resource.",
"type": "object",
"required": [
"bank_id",
"document"
],
"properties": {
"bank_id": {
"title": "Bank Id",
"type": "string"
},
"document": {
"title": "Document",
"type": "object",
"additionalProperties": true
}
}
}Fields§
§bank_id: String§document: Map<String, Value>Trait Implementations§
Source§impl Clone for BankPolicyResponse
impl Clone for BankPolicyResponse
Source§fn clone(&self) -> BankPolicyResponse
fn clone(&self) -> BankPolicyResponse
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 Debug for BankPolicyResponse
impl Debug for BankPolicyResponse
Source§impl<'de> Deserialize<'de> for BankPolicyResponse
impl<'de> Deserialize<'de> for BankPolicyResponse
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<&BankPolicyResponse> for BankPolicyResponse
impl From<&BankPolicyResponse> for BankPolicyResponse
Source§fn from(value: &BankPolicyResponse) -> Self
fn from(value: &BankPolicyResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BankPolicyResponse
impl RefUnwindSafe for BankPolicyResponse
impl Send for BankPolicyResponse
impl Sync for BankPolicyResponse
impl Unpin for BankPolicyResponse
impl UnsafeUnpin for BankPolicyResponse
impl UnwindSafe for BankPolicyResponse
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