pub struct SourceMapError {
pub error_type: SourceMapErrorType,
pub reason: Option<String>,
}
Fields§
§error_type: SourceMapErrorType
§reason: Option<String>
Implementations§
Source§impl SourceMapError
impl SourceMapError
pub fn new(error_type: SourceMapErrorType) -> Self
pub fn new_with_reason(error_type: SourceMapErrorType, reason: &str) -> Self
Trait Implementations§
Source§impl Debug for SourceMapError
impl Debug for SourceMapError
Source§impl Display for SourceMapError
impl Display for SourceMapError
Source§impl Error for SourceMapError
impl Error for SourceMapError
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<CompositeSerializerError<Infallible, AllocScratchError, Infallible>> for SourceMapError
impl From<CompositeSerializerError<Infallible, AllocScratchError, Infallible>> for SourceMapError
Source§fn from(
_err: CompositeSerializerError<Infallible, AllocScratchError, Infallible>,
) -> SourceMapError
fn from( _err: CompositeSerializerError<Infallible, AllocScratchError, Infallible>, ) -> SourceMapError
Converts to this type from the input type.
Source§impl From<Error> for SourceMapError
impl From<Error> for SourceMapError
Source§fn from(e: Error) -> SourceMapError
fn from(e: Error) -> SourceMapError
Converts to this type from the input type.
Source§impl From<Error> for SourceMapError
impl From<Error> for SourceMapError
Source§fn from(_err: Error) -> SourceMapError
fn from(_err: Error) -> SourceMapError
Converts to this type from the input type.
Source§impl From<FromUtf8Error> for SourceMapError
impl From<FromUtf8Error> for SourceMapError
Source§fn from(_err: FromUtf8Error) -> SourceMapError
fn from(_err: FromUtf8Error) -> SourceMapError
Converts to this type from the input type.
Source§impl From<Infallible> for SourceMapError
impl From<Infallible> for SourceMapError
Source§fn from(_err: Infallible) -> SourceMapError
fn from(_err: Infallible) -> SourceMapError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SourceMapError
impl RefUnwindSafe for SourceMapError
impl Send for SourceMapError
impl Sync for SourceMapError
impl Unpin for SourceMapError
impl UnwindSafe for SourceMapError
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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