Trait parser_c::data::error::Error
[−]
pub trait Error where
Self: Debug, { fn errorInfo(self) -> ErrorInfo; fn toError(self) -> CError; fn fromError(c: CError) -> Option<Box<Self>>
where
Self: Sized; fn changeErrorLevel(self, lvl: ErrorLevel) -> Self
where
Self: Sized + Clone, { ... } }
Required Methods
fn errorInfo(self) -> ErrorInfo
fn toError(self) -> CError
fn fromError(c: CError) -> Option<Box<Self>> where
Self: Sized,
Self: Sized,
Provided Methods
fn changeErrorLevel(self, lvl: ErrorLevel) -> Self where
Self: Sized + Clone,
Self: Sized + Clone,
Implementors
impl Error for CError