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