pub enum BoxedInstance {
Statsig(Arc<Statsig>),
StatsigOptions(Arc<StatsigOptions>),
StatsigUser(Arc<StatsigUser>),
StatsigHttpSpecsAdapter(Arc<StatsigHttpSpecsAdapter>),
StatsigLocalFileSpecsAdapter(Arc<StatsigLocalFileSpecsAdapter>),
StatsigHttpEventLoggingAdapter(Arc<StatsigHttpEventLoggingAdapter>),
StatsigLocalFileEventLoggingAdapter(Arc<StatsigLocalFileEventLoggingAdapter>),
}
Variants§
Statsig(Arc<Statsig>)
StatsigOptions(Arc<StatsigOptions>)
StatsigUser(Arc<StatsigUser>)
StatsigHttpSpecsAdapter(Arc<StatsigHttpSpecsAdapter>)
StatsigLocalFileSpecsAdapter(Arc<StatsigLocalFileSpecsAdapter>)
StatsigHttpEventLoggingAdapter(Arc<StatsigHttpEventLoggingAdapter>)
StatsigLocalFileEventLoggingAdapter(Arc<StatsigLocalFileEventLoggingAdapter>)
Auto Trait Implementations§
impl Freeze for BoxedInstance
impl !RefUnwindSafe for BoxedInstance
impl Send for BoxedInstance
impl Sync for BoxedInstance
impl Unpin for BoxedInstance
impl !UnwindSafe for BoxedInstance
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