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