pub struct AccountsListResponse {
pub data: Vec<AccountData>,
pub links: Pagination<AccountsListResponse>,
}
Expand description
Can be used to get the Accounts list, with the use of a RestClient
Example:
let mut client = get_new_blocking_client(String::from("Bearer up:demo:rtHR7D3eBEqKPiIT"))
.unwrap();
let accounts: AccountsListResponse = client.get(()).unwrap();
Fields§
§data: Vec<AccountData>
§links: Pagination<AccountsListResponse>
Trait Implementations§
Source§impl Debug for AccountsListResponse
impl Debug for AccountsListResponse
Source§impl<'de> Deserialize<'de> for AccountsListResponse
impl<'de> Deserialize<'de> for AccountsListResponse
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 RestPath<()> for AccountsListResponse
impl RestPath<()> for AccountsListResponse
Auto Trait Implementations§
impl Freeze for AccountsListResponse
impl RefUnwindSafe for AccountsListResponse
impl Send for AccountsListResponse
impl Sync for AccountsListResponse
impl Unpin for AccountsListResponse
impl UnwindSafe for AccountsListResponse
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