pub enum CssStyleTransformParseErrorOwned {
InvalidTransform(String),
InvalidParenthesis(ParenthesisParseErrorOwned),
WrongNumberOfComponents {
expected: usize,
got: usize,
input: String,
},
NumberParseError(ParseFloatError),
PixelValueParseError(CssPixelValueParseErrorOwned),
AngleValueParseError(CssAngleValueParseErrorOwned),
PercentageValueParseError(PercentageParseError),
}Variants§
InvalidTransform(String)
InvalidParenthesis(ParenthesisParseErrorOwned)
WrongNumberOfComponents
NumberParseError(ParseFloatError)
PixelValueParseError(CssPixelValueParseErrorOwned)
AngleValueParseError(CssAngleValueParseErrorOwned)
PercentageValueParseError(PercentageParseError)
Implementations§
Trait Implementations§
Source§impl Clone for CssStyleTransformParseErrorOwned
impl Clone for CssStyleTransformParseErrorOwned
Source§fn clone(&self) -> CssStyleTransformParseErrorOwned
fn clone(&self) -> CssStyleTransformParseErrorOwned
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 PartialEq for CssStyleTransformParseErrorOwned
impl PartialEq for CssStyleTransformParseErrorOwned
Source§fn eq(&self, other: &CssStyleTransformParseErrorOwned) -> bool
fn eq(&self, other: &CssStyleTransformParseErrorOwned) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CssStyleTransformParseErrorOwned
Auto Trait Implementations§
impl Freeze for CssStyleTransformParseErrorOwned
impl RefUnwindSafe for CssStyleTransformParseErrorOwned
impl Send for CssStyleTransformParseErrorOwned
impl Sync for CssStyleTransformParseErrorOwned
impl Unpin for CssStyleTransformParseErrorOwned
impl UnwindSafe for CssStyleTransformParseErrorOwned
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