pub enum HyperparametersWriteError {
Io(Error),
InvalidIntegerConversion(TryFromIntError),
}
Expand description
Reported from functions that write
Variants§
Io(Error)
A non-specific IO error.
InvalidIntegerConversion(TryFromIntError)
One of the integers encountered could not be converted to a more appropriate type.
Trait Implementations§
Source§impl Debug for HyperparametersWriteError
impl Debug for HyperparametersWriteError
Source§impl Display for HyperparametersWriteError
impl Display for HyperparametersWriteError
Source§impl Error for HyperparametersWriteError
impl Error for HyperparametersWriteError
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<Error> for HyperparametersWriteError
impl From<Error> for HyperparametersWriteError
Source§impl From<TryFromIntError> for HyperparametersWriteError
impl From<TryFromIntError> for HyperparametersWriteError
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HyperparametersWriteError
impl !RefUnwindSafe for HyperparametersWriteError
impl Send for HyperparametersWriteError
impl Sync for HyperparametersWriteError
impl Unpin for HyperparametersWriteError
impl !UnwindSafe for HyperparametersWriteError
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