pub struct FlagPoller { /* private fields */ }Expand description
Synchronous poller for feature flag definitions.
Runs a background thread that periodically fetches flag definitions from
the PostHog API and updates the shared cache. Use this for blocking/sync
applications. For async applications, use AsyncFlagPoller instead.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlagPoller
impl !RefUnwindSafe for FlagPoller
impl Send for FlagPoller
impl Sync for FlagPoller
impl Unpin for FlagPoller
impl !UnwindSafe for FlagPoller
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