pub enum StatsigErr {
Show 21 variants
CustomError(String),
LockFailure(String),
UnstartedAdapter(String),
NetworkError(String),
SerializationError(String),
ZstdDictCompressionError(String),
GzipError(String),
ZstdError(String),
JsonParseError(String, String),
FileError(String),
ThreadFailure(String),
StackOverflowError,
DataStoreFailure(String),
SpecsAdapterSkipPoll(String),
ObservabilityClientFailure(String),
IdListsAdapterFailedToInsertIdList,
GrpcError(String),
ShutdownTimeout,
ScheduleFailure(String),
ShutdownFailure,
SharedInstanceFailure(String),
}
Variants§
CustomError(String)
LockFailure(String)
UnstartedAdapter(String)
NetworkError(String)
SerializationError(String)
ZstdDictCompressionError(String)
GzipError(String)
ZstdError(String)
JsonParseError(String, String)
FileError(String)
ThreadFailure(String)
StackOverflowError
DataStoreFailure(String)
SpecsAdapterSkipPoll(String)
ObservabilityClientFailure(String)
IdListsAdapterFailedToInsertIdList
GrpcError(String)
ShutdownTimeout
ScheduleFailure(String)
ShutdownFailure
Trait Implementations§
Source§impl Clone for StatsigErr
impl Clone for StatsigErr
Source§fn clone(&self) -> StatsigErr
fn clone(&self) -> StatsigErr
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StatsigErr
impl Debug for StatsigErr
Auto Trait Implementations§
impl Freeze for StatsigErr
impl RefUnwindSafe for StatsigErr
impl Send for StatsigErr
impl Sync for StatsigErr
impl Unpin for StatsigErr
impl UnwindSafe for StatsigErr
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