pub enum MigrationPreviewError {
Build(BuilderError),
Ir(IrError),
Render(RenderError),
}Variants§
Trait Implementations§
Source§impl Debug for MigrationPreviewError
impl Debug for MigrationPreviewError
Source§impl Display for MigrationPreviewError
impl Display for MigrationPreviewError
Source§impl Error for MigrationPreviewError
impl Error for MigrationPreviewError
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<BuilderError> for MigrationPreviewError
impl From<BuilderError> for MigrationPreviewError
Source§fn from(source: BuilderError) -> Self
fn from(source: BuilderError) -> Self
Converts to this type from the input type.
Source§impl From<IrError> for MigrationPreviewError
impl From<IrError> for MigrationPreviewError
Source§impl From<RenderError> for MigrationPreviewError
impl From<RenderError> for MigrationPreviewError
Source§fn from(source: RenderError) -> Self
fn from(source: RenderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for MigrationPreviewError
impl !UnwindSafe for MigrationPreviewError
impl Freeze for MigrationPreviewError
impl Send for MigrationPreviewError
impl Sync for MigrationPreviewError
impl Unpin for MigrationPreviewError
impl UnsafeUnpin for MigrationPreviewError
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