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