pub struct APIClient { /* private fields */ }Implementations§
Source§impl APIClient
impl APIClient
pub fn new(configuration: Configuration) -> APIClient
pub fn accounts_api(&self) -> &dyn AccountsApi
pub fn budgets_api(&self) -> &dyn BudgetsApi
pub fn categories_api(&self) -> &dyn CategoriesApi
pub fn months_api(&self) -> &dyn MonthsApi
pub fn payee_locations_api(&self) -> &dyn PayeeLocationsApi
pub fn payees_api(&self) -> &dyn PayeesApi
pub fn scheduled_transactions_api(&self) -> &dyn ScheduledTransactionsApi
pub fn transactions_api(&self) -> &dyn TransactionsApi
pub fn user_api(&self) -> &dyn UserApi
Auto Trait Implementations§
impl Freeze for APIClient
impl !RefUnwindSafe for APIClient
impl !Send for APIClient
impl !Sync for APIClient
impl Unpin for APIClient
impl !UnwindSafe for APIClient
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more