#[repr(C, u8)]pub enum NodeDataInlineCssProperty {
Normal(CssProperty),
Active(CssProperty),
Focus(CssProperty),
Hover(CssProperty),
}Variants§
Trait Implementations§
Source§impl Clone for NodeDataInlineCssProperty
impl Clone for NodeDataInlineCssProperty
Source§fn clone(&self) -> NodeDataInlineCssProperty
fn clone(&self) -> NodeDataInlineCssProperty
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 NodeDataInlineCssProperty
impl Debug for NodeDataInlineCssProperty
Source§impl FromIterator<NodeDataInlineCssProperty> for NodeDataInlineCssPropertyVec
impl FromIterator<NodeDataInlineCssProperty> for NodeDataInlineCssPropertyVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = NodeDataInlineCssProperty>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = NodeDataInlineCssProperty>,
Creates a value from an iterator. Read more
Source§impl Hash for NodeDataInlineCssProperty
impl Hash for NodeDataInlineCssProperty
Source§impl Ord for NodeDataInlineCssProperty
impl Ord for NodeDataInlineCssProperty
Source§fn cmp(&self, other: &NodeDataInlineCssProperty) -> Ordering
fn cmp(&self, other: &NodeDataInlineCssProperty) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for NodeDataInlineCssProperty
impl PartialOrd for NodeDataInlineCssProperty
impl Eq for NodeDataInlineCssProperty
impl StructuralPartialEq for NodeDataInlineCssProperty
Auto Trait Implementations§
impl Freeze for NodeDataInlineCssProperty
impl RefUnwindSafe for NodeDataInlineCssProperty
impl Send for NodeDataInlineCssProperty
impl Sync for NodeDataInlineCssProperty
impl Unpin for NodeDataInlineCssProperty
impl UnwindSafe for NodeDataInlineCssProperty
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more