pub enum ApplyPipelineError {
Apply(ApplyError),
ConcretizeNonConvergent {
bound: usize,
},
Rejected {
message: String,
diagnostics: Vec<Diagnostic>,
},
}Variants§
Implementations§
Source§impl ApplyPipelineError
impl ApplyPipelineError
pub fn diagnostics(&self) -> Option<&[Diagnostic]>
Trait Implementations§
Source§impl Debug for ApplyPipelineError
impl Debug for ApplyPipelineError
Source§impl Display for ApplyPipelineError
impl Display for ApplyPipelineError
Source§impl Error for ApplyPipelineError
impl Error for ApplyPipelineError
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<ApplyError> for ApplyPipelineError
impl From<ApplyError> for ApplyPipelineError
Source§fn from(source: ApplyError) -> Self
fn from(source: ApplyError) -> Self
Converts to this type from the input type.
Source§impl From<ApplyPipelineError> for DispatchError
impl From<ApplyPipelineError> for DispatchError
Source§fn from(source: ApplyPipelineError) -> Self
fn from(source: ApplyPipelineError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ApplyPipelineError
impl RefUnwindSafe for ApplyPipelineError
impl Send for ApplyPipelineError
impl Sync for ApplyPipelineError
impl Unpin for ApplyPipelineError
impl UnsafeUnpin for ApplyPipelineError
impl UnwindSafe for ApplyPipelineError
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