pub enum ModelOpsError {
MemoryOpsError(MemoryOpsError),
}Expand description
ModelOpsError Logical or configuration errors that occur during sharding planning.
Variants§
MemoryOpsError(MemoryOpsError)
Trait Implementations§
Source§impl Debug for ModelOpsError
impl Debug for ModelOpsError
Source§impl Display for ModelOpsError
impl Display for ModelOpsError
Source§impl Error for ModelOpsError
impl Error for ModelOpsError
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<MemoryOpsError> for ModelOpsError
impl From<MemoryOpsError> for ModelOpsError
Source§fn from(source: MemoryOpsError) -> Self
fn from(source: MemoryOpsError) -> Self
Converts to this type from the input type.
Source§impl From<ModelOpsError> for Error
impl From<ModelOpsError> for Error
Source§fn from(err: ModelOpsError) -> Self
fn from(err: ModelOpsError) -> Self
Converts to this type from the input type.
Source§impl From<ModelOpsError> for OpsError
impl From<ModelOpsError> for OpsError
Source§fn from(source: ModelOpsError) -> Self
fn from(source: ModelOpsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ModelOpsError
impl RefUnwindSafe for ModelOpsError
impl Send for ModelOpsError
impl Sync for ModelOpsError
impl Unpin for ModelOpsError
impl UnwindSafe for ModelOpsError
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