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