pub enum GitlabParserError {
IoError(Error),
YamlError(Error),
InvalidStructure(String),
SchemaValidationError(String),
}Variants§
Trait Implementations§
Source§impl Debug for GitlabParserError
impl Debug for GitlabParserError
Source§impl Display for GitlabParserError
impl Display for GitlabParserError
Source§impl Error for GitlabParserError
impl Error for GitlabParserError
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 GitlabParserError
impl From<Error> for GitlabParserError
Auto Trait Implementations§
impl Freeze for GitlabParserError
impl !RefUnwindSafe for GitlabParserError
impl Send for GitlabParserError
impl Sync for GitlabParserError
impl Unpin for GitlabParserError
impl UnsafeUnpin for GitlabParserError
impl !UnwindSafe for GitlabParserError
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