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