pub struct ParseSourceMapError(/* private fields */);
Expand description
An error returned when parsing source maps.
Trait Implementations§
Source§impl Debug for ParseSourceMapError
impl Debug for ParseSourceMapError
Source§impl Display for ParseSourceMapError
impl Display for ParseSourceMapError
Source§impl Error for ParseSourceMapError
impl Error for ParseSourceMapError
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 ParseSourceMapError
impl From<Error> for ParseSourceMapError
Source§fn from(error: Error) -> ParseSourceMapError
fn from(error: Error) -> ParseSourceMapError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseSourceMapError
impl !RefUnwindSafe for ParseSourceMapError
impl Send for ParseSourceMapError
impl Sync for ParseSourceMapError
impl Unpin for ParseSourceMapError
impl !UnwindSafe for ParseSourceMapError
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