pub enum HyperoptError {
Storage(StorageError),
}Expand description
Errors raised by crate::Study operations (currently all storage-backed).
Variants§
Storage(StorageError)
Trait Implementations§
Source§impl Debug for HyperoptError
impl Debug for HyperoptError
Source§impl Display for HyperoptError
impl Display for HyperoptError
Source§impl Error for HyperoptError
impl Error for HyperoptError
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<StorageError> for HyperoptError
impl From<StorageError> for HyperoptError
Source§fn from(e: StorageError) -> Self
fn from(e: StorageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HyperoptError
impl RefUnwindSafe for HyperoptError
impl Send for HyperoptError
impl Sync for HyperoptError
impl Unpin for HyperoptError
impl UnsafeUnpin for HyperoptError
impl UnwindSafe for HyperoptError
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