pub enum CssAngleValueParseErrorOwned {
EmptyString,
NoValueGiven(String, AngleMetric),
ValueParseErr(ParseFloatError, String),
InvalidAngle(String),
}Variants§
EmptyString
NoValueGiven(String, AngleMetric)
ValueParseErr(ParseFloatError, String)
InvalidAngle(String)
Implementations§
Trait Implementations§
Source§impl Clone for CssAngleValueParseErrorOwned
impl Clone for CssAngleValueParseErrorOwned
Source§fn clone(&self) -> CssAngleValueParseErrorOwned
fn clone(&self) -> CssAngleValueParseErrorOwned
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 Debug for CssAngleValueParseErrorOwned
impl Debug for CssAngleValueParseErrorOwned
Source§impl PartialEq for CssAngleValueParseErrorOwned
impl PartialEq for CssAngleValueParseErrorOwned
Source§fn eq(&self, other: &CssAngleValueParseErrorOwned) -> bool
fn eq(&self, other: &CssAngleValueParseErrorOwned) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CssAngleValueParseErrorOwned
Auto Trait Implementations§
impl Freeze for CssAngleValueParseErrorOwned
impl RefUnwindSafe for CssAngleValueParseErrorOwned
impl Send for CssAngleValueParseErrorOwned
impl Sync for CssAngleValueParseErrorOwned
impl Unpin for CssAngleValueParseErrorOwned
impl UnwindSafe for CssAngleValueParseErrorOwned
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