pub enum ProfilerError {
QuantileError(String),
MeanError,
ComputeError(String),
StringStatsError(String),
FeatureMapError(String),
ConversionError(String),
StringProfileError(String),
ConcatenateError(String),
}Variants§
QuantileError(String)
MeanError
ComputeError(String)
StringStatsError(String)
FeatureMapError(String)
ConversionError(String)
StringProfileError(String)
ConcatenateError(String)
Implementations§
Source§impl ProfilerError
impl ProfilerError
pub fn traced_string_stats_error(err: impl Display) -> Self
pub fn traced_concatenate_error(err: impl Display) -> Self
Trait Implementations§
Source§impl Debug for ProfilerError
impl Debug for ProfilerError
Source§impl Display for ProfilerError
impl Display for ProfilerError
Source§impl Error for ProfilerError
impl Error for ProfilerError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ProfilerError> for ScouterError
impl From<ProfilerError> for ScouterError
Source§fn from(source: ProfilerError) -> Self
fn from(source: ProfilerError) -> Self
Converts to this type from the input type.
Source§impl TracedError for ProfilerError
impl TracedError for ProfilerError
Auto Trait Implementations§
impl Freeze for ProfilerError
impl RefUnwindSafe for ProfilerError
impl Send for ProfilerError
impl Sync for ProfilerError
impl Unpin for ProfilerError
impl UnwindSafe for ProfilerError
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