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