pub enum RefactorError {
EntityNotFound(String),
UnsupportedFormat(String),
Invalid(String),
Io(Error),
Core(OntoCoreError),
}Variants§
Trait Implementations§
Source§impl Debug for RefactorError
impl Debug for RefactorError
Source§impl Display for RefactorError
impl Display for RefactorError
Source§impl Error for RefactorError
impl Error for RefactorError
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<Error> for RefactorError
impl From<Error> for RefactorError
Source§impl From<OntoCoreError> for RefactorError
impl From<OntoCoreError> for RefactorError
Source§fn from(source: OntoCoreError) -> Self
fn from(source: OntoCoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for RefactorError
impl !UnwindSafe for RefactorError
impl Freeze for RefactorError
impl Send for RefactorError
impl Sync for RefactorError
impl Unpin for RefactorError
impl UnsafeUnpin for RefactorError
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