#[repr(C, u8)]pub enum CssStyleTransformParseErrorOwned {
InvalidTransform(AzString),
InvalidParenthesis(ParenthesisParseErrorOwned),
WrongNumberOfComponents(WrongComponentCountError),
NumberParseError(ParseFloatError),
PixelValueParseError(CssPixelValueParseErrorOwned),
AngleValueParseError(CssAngleValueParseErrorOwned),
PercentageValueParseError(PercentageParseError),
}Variants§
InvalidTransform(AzString)
InvalidParenthesis(ParenthesisParseErrorOwned)
WrongNumberOfComponents(WrongComponentCountError)
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for CssStyleTransformParseErrorOwned
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 UnsafeUnpin 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