pub enum InferError {
AlgorithmW(AlgorithmWError),
Scope(ScopeError),
Unknown,
}Variants§
Trait Implementations§
Source§impl Debug for InferError
impl Debug for InferError
Source§impl From<()> for InferError
impl From<()> for InferError
Source§fn from(original: ()) -> InferError
fn from(original: ()) -> InferError
Converts to this type from the input type.
Source§impl From<AlgorithmWError> for InferError
impl From<AlgorithmWError> for InferError
Source§fn from(original: AlgorithmWError) -> InferError
fn from(original: AlgorithmWError) -> InferError
Converts to this type from the input type.
Source§impl From<InferError> for ReportMessage
impl From<InferError> for ReportMessage
Source§fn from(value: InferError) -> Self
fn from(value: InferError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InferError
impl RefUnwindSafe for InferError
impl Send for InferError
impl Sync for InferError
impl Unpin for InferError
impl UnwindSafe for InferError
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
Source§impl<T, U> ConvertibleToMut<U> for T
impl<T, U> ConvertibleToMut<U> for T
fn try_as_mut(&mut self) -> Option<&mut U>
Source§impl<T, U> ConvertibleToRef<U> for T
impl<T, U> ConvertibleToRef<U> for T
fn try_as_ref(&self) -> Option<&U>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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