pub enum RenderDomError {
Component(ComponentError),
CssError(CssParseErrorOwned),
}
Variants§
Trait Implementations§
Source§impl Clone for RenderDomError
impl Clone for RenderDomError
Source§fn clone(&self) -> RenderDomError
fn clone(&self) -> RenderDomError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RenderDomError
impl Debug for RenderDomError
Source§impl<'a> Display for RenderDomError
impl<'a> Display for RenderDomError
Source§impl From<ComponentError> for RenderDomError
impl From<ComponentError> for RenderDomError
Source§fn from(e: ComponentError) -> RenderDomError
fn from(e: ComponentError) -> RenderDomError
Converts to this type from the input type.
Source§impl From<CssParseErrorOwned> for RenderDomError
impl From<CssParseErrorOwned> for RenderDomError
Source§fn from(e: CssParseErrorOwned) -> RenderDomError
fn from(e: CssParseErrorOwned) -> RenderDomError
Converts to this type from the input type.
Source§impl From<RenderDomError> for CompileError
impl From<RenderDomError> for CompileError
Source§fn from(e: RenderDomError) -> CompileError
fn from(e: RenderDomError) -> CompileError
Converts to this type from the input type.
Source§impl From<RenderDomError> for DomXmlParseError
impl From<RenderDomError> for DomXmlParseError
Source§fn from(e: RenderDomError) -> DomXmlParseError
fn from(e: RenderDomError) -> DomXmlParseError
Converts to this type from the input type.
Source§impl PartialEq for RenderDomError
impl PartialEq for RenderDomError
impl StructuralPartialEq for RenderDomError
Auto Trait Implementations§
impl Freeze for RenderDomError
impl RefUnwindSafe for RenderDomError
impl Send for RenderDomError
impl Sync for RenderDomError
impl Unpin for RenderDomError
impl UnwindSafe for RenderDomError
Blanket Implementations§
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<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