pub enum InterpError {
Unsupported(String),
Model(String),
}Variants§
Unsupported(String)
The graph’s inputs are not a shape this can drive. Carries what it saw and what it wanted.
Model(String)
The model itself failed.
Trait Implementations§
Source§impl Debug for InterpError
impl Debug for InterpError
Source§impl Display for InterpError
impl Display for InterpError
Source§impl Error for InterpError
impl Error for InterpError
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<InterpError> for RepresentationError
impl From<InterpError> for RepresentationError
Source§fn from(error: InterpError) -> Self
fn from(error: InterpError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InterpError
impl RefUnwindSafe for InterpError
impl Send for InterpError
impl Sync for InterpError
impl Unpin for InterpError
impl UnsafeUnpin for InterpError
impl UnwindSafe for InterpError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more