pub enum CMakeListsParseError {
Unknown,
Parser(String),
}
Variants§
Trait Implementations§
Source§impl Debug for CMakeListsParseError
impl Debug for CMakeListsParseError
Source§impl Display for CMakeListsParseError
impl Display for CMakeListsParseError
Source§impl Error for CMakeListsParseError
impl Error for CMakeListsParseError
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()
Source§impl From<Err<VerboseError<&[u8]>>> for CMakeListsParseError
impl From<Err<VerboseError<&[u8]>>> for CMakeListsParseError
Auto Trait Implementations§
impl Freeze for CMakeListsParseError
impl RefUnwindSafe for CMakeListsParseError
impl Send for CMakeListsParseError
impl Sync for CMakeListsParseError
impl Unpin for CMakeListsParseError
impl UnwindSafe for CMakeListsParseError
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