pub enum CssGradientStopParseErrorOwned {
Error(String),
Percentage(PercentageParseErrorOwned),
Angle(CssAngleValueParseErrorOwned),
ColorParseError(CssColorParseErrorOwned),
}Variants§
Error(String)
Percentage(PercentageParseErrorOwned)
Angle(CssAngleValueParseErrorOwned)
ColorParseError(CssColorParseErrorOwned)
Implementations§
Trait Implementations§
Source§impl Clone for CssGradientStopParseErrorOwned
impl Clone for CssGradientStopParseErrorOwned
Source§fn clone(&self) -> CssGradientStopParseErrorOwned
fn clone(&self) -> CssGradientStopParseErrorOwned
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 CssGradientStopParseErrorOwned
impl PartialEq for CssGradientStopParseErrorOwned
Source§fn eq(&self, other: &CssGradientStopParseErrorOwned) -> bool
fn eq(&self, other: &CssGradientStopParseErrorOwned) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CssGradientStopParseErrorOwned
Auto Trait Implementations§
impl Freeze for CssGradientStopParseErrorOwned
impl RefUnwindSafe for CssGradientStopParseErrorOwned
impl Send for CssGradientStopParseErrorOwned
impl Sync for CssGradientStopParseErrorOwned
impl Unpin for CssGradientStopParseErrorOwned
impl UnwindSafe for CssGradientStopParseErrorOwned
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