Struct parcel_sourcemap::sourcemap_error::SourceMapError
source · [−]pub struct SourceMapError {
pub error_type: SourceMapErrorType,
pub reason: Option<String>,
}
Fields
error_type: SourceMapErrorType
reason: Option<String>
Implementations
sourceimpl SourceMapError
impl SourceMapError
pub fn new(error_type: SourceMapErrorType) -> Self
pub fn new_with_reason(error_type: SourceMapErrorType, reason: &str) -> Self
Trait Implementations
sourceimpl Debug for SourceMapError
impl Debug for SourceMapError
sourceimpl Display for SourceMapError
impl Display for SourceMapError
sourceimpl Error for SourceMapError
impl Error for SourceMapError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<CompositeSerializerError<Infallible, AllocScratchError, Infallible>> for SourceMapError
impl From<CompositeSerializerError<Infallible, AllocScratchError, Infallible>> for SourceMapError
sourcefn from(
_err: CompositeSerializerError<Infallible, AllocScratchError, Infallible>
) -> SourceMapError
fn from(
_err: CompositeSerializerError<Infallible, AllocScratchError, Infallible>
) -> SourceMapError
Converts to this type from the input type.
sourceimpl From<Error> for SourceMapError
impl From<Error> for SourceMapError
sourcefn from(e: Error) -> SourceMapError
fn from(e: Error) -> SourceMapError
Converts to this type from the input type.
sourceimpl From<Error> for SourceMapError
impl From<Error> for SourceMapError
sourcefn from(_err: Error) -> SourceMapError
fn from(_err: Error) -> SourceMapError
Converts to this type from the input type.
sourceimpl From<FromUtf8Error> for SourceMapError
impl From<FromUtf8Error> for SourceMapError
sourcefn from(_err: FromUtf8Error) -> SourceMapError
fn from(_err: FromUtf8Error) -> SourceMapError
Converts to this type from the input type.
sourceimpl From<Infallible> for SourceMapError
impl From<Infallible> for SourceMapError
sourcefn from(_err: Infallible) -> SourceMapError
fn from(_err: Infallible) -> SourceMapError
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for SourceMapError
impl Send for SourceMapError
impl Sync for SourceMapError
impl Unpin for SourceMapError
impl UnwindSafe for SourceMapError
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
sourcefn 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.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more