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)>
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<'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 schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &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 moreimpl<T> StructuralPartialEq for Error<T>
Auto Trait Implementations§
impl<T> Freeze for Error<T>where
T: Freeze,
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§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more