pub struct CachedClient<C> { /* private fields */ }
Implementations§
Source§impl<C> CachedClient<C>where
C: Client,
impl<C> CachedClient<C>where
C: Client,
pub fn new( client: C, cache_ttl: Duration, ) -> Result<CachedClient<C>, AcariError>
Trait Implementations§
Source§impl<C> Client for CachedClient<C>where
C: Client,
impl<C> Client for CachedClient<C>where
C: Client,
fn get_domain(&self) -> String
fn get_account(&self) -> Result<Account, AcariError>
fn get_myself(&self) -> Result<User, AcariError>
fn get_customers(&self) -> Result<Vec<Customer>, AcariError>
fn get_projects(&self) -> Result<Vec<Project>, AcariError>
fn get_services( &self, project_id: &ProjectId, ) -> Result<Vec<Service>, AcariError>
fn get_time_entries( &self, date_span: DateSpan, ) -> Result<Vec<TimeEntry>, AcariError>
fn create_time_entry( &self, day: Day, project_id: &ProjectId, service_id: &ServiceId, minutes: Minutes, note: Option<String>, ) -> Result<TimeEntry, AcariError>
fn update_time_entry( &self, entry_id: &TimeEntryId, minutes: Minutes, note: Option<String>, ) -> Result<(), AcariError>
fn delete_time_entry(&self, entry_id: &TimeEntryId) -> Result<(), AcariError>
fn get_tracker(&self) -> Result<Tracker, AcariError>
fn create_tracker(&self, entry_id: &TimeEntryId) -> Result<Tracker, AcariError>
fn delete_tracker(&self, entry_id: &TimeEntryId) -> Result<Tracker, AcariError>
Auto Trait Implementations§
impl<C> Freeze for CachedClient<C>where
C: Freeze,
impl<C> RefUnwindSafe for CachedClient<C>where
C: RefUnwindSafe,
impl<C> Send for CachedClient<C>where
C: Send,
impl<C> Sync for CachedClient<C>where
C: Sync,
impl<C> Unpin for CachedClient<C>where
C: Unpin,
impl<C> UnwindSafe for CachedClient<C>where
C: UnwindSafe,
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