pub struct ProcessorOwnerBody {
pub account_owners: Vec<ProcessorOwnerBodyAccountOwnersItem>,
pub pagination: Option<PaginationResponse>,
}Expand description
ProcessorOwnerBody
JSON schema
{
"type": "object",
"properties": {
"account_owners": {
"items": {
"allOf": [
{
"$ref": "#/components/schemas/MemberElements"
},
{
"$ref": "#/components/schemas/ProcessorOwner"
}
]
}
},
"pagination": {
"$ref": "#/components/schemas/PaginationResponse"
}
}
}Fields§
§account_owners: Vec<ProcessorOwnerBodyAccountOwnersItem>§pagination: Option<PaginationResponse>Trait Implementations§
Source§impl Clone for ProcessorOwnerBody
impl Clone for ProcessorOwnerBody
Source§fn clone(&self) -> ProcessorOwnerBody
fn clone(&self) -> ProcessorOwnerBody
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 ProcessorOwnerBody
impl Debug for ProcessorOwnerBody
Source§impl Default for ProcessorOwnerBody
impl Default for ProcessorOwnerBody
Source§impl<'de> Deserialize<'de> for ProcessorOwnerBody
impl<'de> Deserialize<'de> for ProcessorOwnerBody
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<&ProcessorOwnerBody> for ProcessorOwnerBody
impl From<&ProcessorOwnerBody> for ProcessorOwnerBody
Source§fn from(value: &ProcessorOwnerBody) -> Self
fn from(value: &ProcessorOwnerBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProcessorOwnerBody
impl RefUnwindSafe for ProcessorOwnerBody
impl Send for ProcessorOwnerBody
impl Sync for ProcessorOwnerBody
impl Unpin for ProcessorOwnerBody
impl UnwindSafe for ProcessorOwnerBody
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