pub enum AuxiliaryError {
EmptySchemaId,
MalformedSchemaId {
value: String,
},
EmptyArtifactKey,
EmptyArtifactPath {
key: String,
},
}Expand description
Errors from parsing auxiliary declarations.
Variants§
EmptySchemaId
Returned when an auxiliary schema ID is empty.
MalformedSchemaId
Returned when an HFX-owned schema ID is malformed or unsupported.
EmptyArtifactKey
Returned when an artifact key is empty.
EmptyArtifactPath
Returned when an artifact path is empty.
Trait Implementations§
Source§impl Debug for AuxiliaryError
impl Debug for AuxiliaryError
Source§impl Display for AuxiliaryError
impl Display for AuxiliaryError
Source§impl Error for AuxiliaryError
impl Error for AuxiliaryError
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 AuxiliaryError
impl RefUnwindSafe for AuxiliaryError
impl Send for AuxiliaryError
impl Sync for AuxiliaryError
impl Unpin for AuxiliaryError
impl UnsafeUnpin for AuxiliaryError
impl UnwindSafe for AuxiliaryError
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