pub enum PrinterErrorKind {
AmbiguousUrlInCustomProperty {
url: String,
},
FmtError,
InvalidComposesNesting,
InvalidComposesSelector,
InvalidCssModulesPatternInGrid,
}
Expand description
A printer error type.
Variants§
AmbiguousUrlInCustomProperty
An ambiguous relative url()
was encountered in a custom property declaration.
FmtError
A std::fmt::Error was encountered in the underlying destination.
InvalidComposesNesting
The CSS modules composes
property cannot be used within nested rules.
InvalidComposesSelector
The CSS modules composes
property cannot be used with a simple class selector.
InvalidCssModulesPatternInGrid
The CSS modules pattern must end with [local]
for use in CSS grid.
Implementations§
Trait Implementations§
Source§impl Debug for PrinterErrorKind
impl Debug for PrinterErrorKind
Source§impl Display for PrinterErrorKind
impl Display for PrinterErrorKind
Source§impl PartialEq for PrinterErrorKind
impl PartialEq for PrinterErrorKind
Source§impl Serialize for PrinterErrorKind
impl Serialize for PrinterErrorKind
impl StructuralPartialEq for PrinterErrorKind
Auto Trait Implementations§
impl Freeze for PrinterErrorKind
impl RefUnwindSafe for PrinterErrorKind
impl Send for PrinterErrorKind
impl Sync for PrinterErrorKind
impl Unpin for PrinterErrorKind
impl UnwindSafe for PrinterErrorKind
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<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