pub struct LocalAnalytics { /* private fields */ }Implementations§
Trait Implementations§
Source§impl AnalyticsService for LocalAnalytics
impl AnalyticsService for LocalAnalytics
fn track_event<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
properties: HashMap<String, String>,
) -> Pin<Box<dyn Future<Output = AppResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn flush<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = AppResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for LocalAnalytics
impl RefUnwindSafe for LocalAnalytics
impl Send for LocalAnalytics
impl Sync for LocalAnalytics
impl Unpin for LocalAnalytics
impl UnsafeUnpin for LocalAnalytics
impl UnwindSafe for LocalAnalytics
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