pub enum CssFontWeightParseErrorOwned {
InvalidValue(InvalidValueErrOwned),
InvalidNumber(ParseIntError),
}Variants§
InvalidValue(InvalidValueErrOwned)
InvalidNumber(ParseIntError)
Implementations§
Trait Implementations§
Source§impl Clone for CssFontWeightParseErrorOwned
impl Clone for CssFontWeightParseErrorOwned
Source§fn clone(&self) -> CssFontWeightParseErrorOwned
fn clone(&self) -> CssFontWeightParseErrorOwned
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 Debug for CssFontWeightParseErrorOwned
impl Debug for CssFontWeightParseErrorOwned
Source§impl PartialEq for CssFontWeightParseErrorOwned
impl PartialEq for CssFontWeightParseErrorOwned
Source§fn eq(&self, other: &CssFontWeightParseErrorOwned) -> bool
fn eq(&self, other: &CssFontWeightParseErrorOwned) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CssFontWeightParseErrorOwned
Auto Trait Implementations§
impl Freeze for CssFontWeightParseErrorOwned
impl RefUnwindSafe for CssFontWeightParseErrorOwned
impl Send for CssFontWeightParseErrorOwned
impl Sync for CssFontWeightParseErrorOwned
impl Unpin for CssFontWeightParseErrorOwned
impl UnwindSafe for CssFontWeightParseErrorOwned
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