pub enum PercentageParseError {
ValueParseErr(ParseFloatError),
NoPercentSign,
}
Variants§
ValueParseErr(ParseFloatError)
NoPercentSign
Trait Implementations§
Source§impl Clone for PercentageParseError
impl Clone for PercentageParseError
Source§fn clone(&self) -> PercentageParseError
fn clone(&self) -> PercentageParseError
Returns a copy 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 Debug for PercentageParseError
impl Debug for PercentageParseError
Source§impl Display for PercentageParseError
impl Display for PercentageParseError
Source§impl From<ParseFloatError> for PercentageParseError
impl From<ParseFloatError> for PercentageParseError
Source§fn from(e: ParseFloatError) -> Self
fn from(e: ParseFloatError) -> Self
Converts to this type from the input type.
Source§impl<'a> From<PercentageParseError> for CssParsingError<'a>
impl<'a> From<PercentageParseError> for CssParsingError<'a>
Source§fn from(e: PercentageParseError) -> Self
fn from(e: PercentageParseError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PercentageParseError
impl PartialEq for PercentageParseError
impl Eq for PercentageParseError
impl StructuralPartialEq for PercentageParseError
Auto Trait Implementations§
impl Freeze for PercentageParseError
impl RefUnwindSafe for PercentageParseError
impl Send for PercentageParseError
impl Sync for PercentageParseError
impl Unpin for PercentageParseError
impl UnwindSafe for PercentageParseError
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