pub struct ListFoundationAccountsResponse {
pub accounts: Vec<Account>,
pub next_page_token: Option<String>,
}Expand description
ListFoundationAccountsResponse
JSON schema
{
"allOf": [
{
"type": "object",
"required": [
"accounts"
],
"properties": {
"accounts": {
"description": "The list of accounts.",
"type": "array",
"items": {
"$ref": "#/components/schemas/Account"
}
}
}
},
{
"$ref": "#/components/schemas/ListResponse"
}
]
}Fields§
§accounts: Vec<Account>The list of accounts.
next_page_token: Option<String>The token for the next page of items, if any.
Implementations§
Trait Implementations§
Source§impl Clone for ListFoundationAccountsResponse
impl Clone for ListFoundationAccountsResponse
Source§fn clone(&self) -> ListFoundationAccountsResponse
fn clone(&self) -> ListFoundationAccountsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListFoundationAccountsResponse
impl<'de> Deserialize<'de> for ListFoundationAccountsResponse
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<&ListFoundationAccountsResponse> for ListFoundationAccountsResponse
impl From<&ListFoundationAccountsResponse> for ListFoundationAccountsResponse
Source§fn from(value: &ListFoundationAccountsResponse) -> Self
fn from(value: &ListFoundationAccountsResponse) -> Self
Converts to this type from the input type.
Source§impl From<ListFoundationAccountsResponse> for ListFoundationAccountsResponse
impl From<ListFoundationAccountsResponse> for ListFoundationAccountsResponse
Source§fn from(value: ListFoundationAccountsResponse) -> Self
fn from(value: ListFoundationAccountsResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<ListFoundationAccountsResponse> for ListFoundationAccountsResponse
impl TryFrom<ListFoundationAccountsResponse> for ListFoundationAccountsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: ListFoundationAccountsResponse,
) -> Result<Self, ConversionError>
fn try_from( value: ListFoundationAccountsResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ListFoundationAccountsResponse
impl RefUnwindSafe for ListFoundationAccountsResponse
impl Send for ListFoundationAccountsResponse
impl Sync for ListFoundationAccountsResponse
impl Unpin for ListFoundationAccountsResponse
impl UnsafeUnpin for ListFoundationAccountsResponse
impl UnwindSafe for ListFoundationAccountsResponse
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