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