#[non_exhaustive]
pub enum MarkupError {
BadUtf8,
Empty,
Parse,
UnknownElement,
UnknownAttribute,
InvalidContent,
MissingAttribute,
// some variants omitted
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
§impl Clone for MarkupError
impl Clone for MarkupError
§fn clone(&self) -> MarkupError
fn clone(&self) -> MarkupError
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 more§impl Debug for MarkupError
impl Debug for MarkupError
§impl Display for MarkupError
impl Display for MarkupError
§impl ErrorDomain for MarkupError
impl ErrorDomain for MarkupError
§impl Hash for MarkupError
impl Hash for MarkupError
§impl Ord for MarkupError
impl Ord for MarkupError
§impl PartialEq<MarkupError> for MarkupError
impl PartialEq<MarkupError> for MarkupError
§fn eq(&self, other: &MarkupError) -> bool
fn eq(&self, other: &MarkupError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd<MarkupError> for MarkupError
impl PartialOrd<MarkupError> for MarkupError
§fn partial_cmp(&self, other: &MarkupError) -> Option<Ordering>
fn partial_cmp(&self, other: &MarkupError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for MarkupError
impl Eq for MarkupError
impl StructuralEq for MarkupError
impl StructuralPartialEq for MarkupError
Auto Trait Implementations§
impl RefUnwindSafe for MarkupError
impl Send for MarkupError
impl Sync for MarkupError
impl Unpin for MarkupError
impl UnwindSafe for MarkupError
Blanket Implementations§
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
§fn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere U: RoundFrom<T>,
§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.