Enum vk_parse::FatalError
source · [−]#[non_exhaustive]
pub enum FatalError {
MissingRegistryElement,
IoError(Error),
}Expand description
Errors from which parser cannot recover.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MissingRegistryElement
IoError(Error)
Trait Implementations
sourceimpl Debug for FatalError
impl Debug for FatalError
sourceimpl From<Error> for FatalError
impl From<Error> for FatalError
sourcefn from(v: Error) -> FatalError
fn from(v: Error) -> FatalError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for FatalError
impl Send for FatalError
impl Sync for FatalError
impl Unpin for FatalError
impl !UnwindSafe for FatalError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more