pub enum ColumnRuleStyleParseError<'a> {
Style(CssBorderStyleParseError<'a>),
}Variants§
Style(CssBorderStyleParseError<'a>)
Implementations§
Source§impl<'a> ColumnRuleStyleParseError<'a>
impl<'a> ColumnRuleStyleParseError<'a>
pub fn to_contained(&self) -> ColumnRuleStyleParseErrorOwned
Trait Implementations§
Source§impl<'a> Clone for ColumnRuleStyleParseError<'a>
impl<'a> Clone for ColumnRuleStyleParseError<'a>
Source§fn clone(&self) -> ColumnRuleStyleParseError<'a>
fn clone(&self) -> ColumnRuleStyleParseError<'a>
Returns a duplicate 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<'a> Debug for ColumnRuleStyleParseError<'a>
impl<'a> Debug for ColumnRuleStyleParseError<'a>
Source§impl<'a> Display for ColumnRuleStyleParseError<'a>
impl<'a> Display for ColumnRuleStyleParseError<'a>
Source§impl<'a> From<ColumnRuleStyleParseError<'a>> for CssParsingError<'a>
impl<'a> From<ColumnRuleStyleParseError<'a>> for CssParsingError<'a>
Source§fn from(e: ColumnRuleStyleParseError<'a>) -> Self
fn from(e: ColumnRuleStyleParseError<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<CssBorderStyleParseError<'a>> for ColumnRuleStyleParseError<'a>
impl<'a> From<CssBorderStyleParseError<'a>> for ColumnRuleStyleParseError<'a>
Source§fn from(e: CssBorderStyleParseError<'a>) -> Self
fn from(e: CssBorderStyleParseError<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> PartialEq for ColumnRuleStyleParseError<'a>
impl<'a> PartialEq for ColumnRuleStyleParseError<'a>
Source§fn eq(&self, other: &ColumnRuleStyleParseError<'a>) -> bool
fn eq(&self, other: &ColumnRuleStyleParseError<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for ColumnRuleStyleParseError<'a>
Auto Trait Implementations§
impl<'a> Freeze for ColumnRuleStyleParseError<'a>
impl<'a> RefUnwindSafe for ColumnRuleStyleParseError<'a>
impl<'a> Send for ColumnRuleStyleParseError<'a>
impl<'a> Sync for ColumnRuleStyleParseError<'a>
impl<'a> Unpin for ColumnRuleStyleParseError<'a>
impl<'a> UnwindSafe for ColumnRuleStyleParseError<'a>
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