pub enum BaselineConfigError {
InvalidConfig(ConfigValidationError),
UnsupportedValueDimension {
d_value: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for BaselineConfigError
impl Clone for BaselineConfigError
Source§fn clone(&self) -> BaselineConfigError
fn clone(&self) -> BaselineConfigError
Returns a duplicate 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 BaselineConfigError
impl Debug for BaselineConfigError
Source§impl Display for BaselineConfigError
impl Display for BaselineConfigError
Source§impl Error for BaselineConfigError
impl Error for BaselineConfigError
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<ConfigValidationError> for BaselineConfigError
impl From<ConfigValidationError> for BaselineConfigError
Source§fn from(value: ConfigValidationError) -> Self
fn from(value: ConfigValidationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BaselineConfigError
impl PartialEq for BaselineConfigError
impl StructuralPartialEq for BaselineConfigError
Auto Trait Implementations§
impl Freeze for BaselineConfigError
impl RefUnwindSafe for BaselineConfigError
impl Send for BaselineConfigError
impl Sync for BaselineConfigError
impl Unpin for BaselineConfigError
impl UnsafeUnpin for BaselineConfigError
impl UnwindSafe for BaselineConfigError
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