pub enum PipelineDiffError {
BootstrapNotAllowed {
error: String,
},
}Expand description
Error returned by compute_pipeline_diff.
Variants§
BootstrapNotAllowed
The change requires bootstrapping, but bootstrapping is not allowed because the old or the new program has relations with lateness.
Trait Implementations§
Source§impl Clone for PipelineDiffError
impl Clone for PipelineDiffError
Source§fn clone(&self) -> PipelineDiffError
fn clone(&self) -> PipelineDiffError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PipelineDiffError
impl Debug for PipelineDiffError
Source§impl Display for PipelineDiffError
impl Display for PipelineDiffError
Source§impl Error for PipelineDiffError
impl Error for PipelineDiffError
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 PipelineDiffError
impl RefUnwindSafe for PipelineDiffError
impl Send for PipelineDiffError
impl Sync for PipelineDiffError
impl Unpin for PipelineDiffError
impl UnsafeUnpin for PipelineDiffError
impl UnwindSafe for PipelineDiffError
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