Struct lightningcss::error::Error
source · pub struct Error<T> {
pub kind: T,
pub loc: Option<ErrorLocation>,
}
Expand description
An error with a source location.
Fields§
§kind: T
The type of error that occurred.
loc: Option<ErrorLocation>
The location where the error occurred.
Implementations§
source§impl<'i> Error<ParserError<'i>>
impl<'i> Error<ParserError<'i>>
sourcepub fn from(
err: ParseError<'i, ParserError<'i>>,
filename: String
) -> Error<ParserError<'i>>
pub fn from( err: ParseError<'i, ParserError<'i>>, filename: String ) -> Error<ParserError<'i>>
Creates an error from a cssparser error.
sourcepub fn into_owned<'x>(self) -> Error<ParserError<'static>>
pub fn into_owned<'x>(self) -> Error<ParserError<'static>>
Consumes the value and returns an owned clone.
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for Error<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Error<T>where T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T: Display + Debug> Error for Error<T>
impl<T: Display + Debug> Error for Error<T>
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<'i, T: Error> From<Error<ParserError<'i>>> for Error<BundleErrorKind<'i, T>>
Available on crate feature bundler
only.
impl<'i, T: Error> From<Error<ParserError<'i>>> for Error<BundleErrorKind<'i, T>>
Available on crate feature
bundler
only.source§fn from(err: Error<ParserError<'i>>) -> Self
fn from(err: Error<ParserError<'i>>) -> Self
Converts to this type from the input type.
source§impl<T: JsonSchema> JsonSchema for Error<T>
impl<T: JsonSchema> JsonSchema for Error<T>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl<T: PartialEq> PartialEq<Error<T>> for Error<T>
impl<T: PartialEq> PartialEq<Error<T>> for Error<T>
impl<T> StructuralPartialEq for Error<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Error<T>where T: RefUnwindSafe,
impl<T> Send for Error<T>where T: Send,
impl<T> Sync for Error<T>where T: Sync,
impl<T> Unpin for Error<T>where T: Unpin,
impl<T> UnwindSafe for Error<T>where T: UnwindSafe,
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§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
§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,
§fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer