pub enum NeuralIntegrationError {
TranspilationError(String),
GpuInitError(String),
MemoryError(String),
OperationError(String),
PerformanceError(String),
TypeError(String),
}
Expand description
Errors specific to neural integration
Variants§
TranspilationError(String)
GpuInitError(String)
MemoryError(String)
OperationError(String)
PerformanceError(String)
TypeError(String)
Trait Implementations§
Source§impl Debug for NeuralIntegrationError
impl Debug for NeuralIntegrationError
Source§impl Display for NeuralIntegrationError
impl Display for NeuralIntegrationError
Source§impl Error for NeuralIntegrationError
impl Error for NeuralIntegrationError
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()
Auto Trait Implementations§
impl Freeze for NeuralIntegrationError
impl RefUnwindSafe for NeuralIntegrationError
impl Send for NeuralIntegrationError
impl Sync for NeuralIntegrationError
impl Unpin for NeuralIntegrationError
impl UnwindSafe for NeuralIntegrationError
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