#[repr(C)]pub struct ChangedCssProperty {
pub previous_state: StyledNodeState,
pub previous_prop: CssProperty,
pub current_state: StyledNodeState,
pub current_prop: CssProperty,
}Fields§
§previous_state: StyledNodeState§previous_prop: CssProperty§current_state: StyledNodeState§current_prop: CssPropertyTrait Implementations§
Source§impl Clone for ChangedCssProperty
impl Clone for ChangedCssProperty
Source§fn clone(&self) -> ChangedCssProperty
fn clone(&self) -> ChangedCssProperty
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 ChangedCssProperty
impl Debug for ChangedCssProperty
Source§impl FromIterator<ChangedCssProperty> for ChangedCssPropertyVec
impl FromIterator<ChangedCssProperty> for ChangedCssPropertyVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = ChangedCssProperty>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = ChangedCssProperty>,
Creates a value from an iterator. Read more
Source§impl Hash for ChangedCssProperty
impl Hash for ChangedCssProperty
Source§impl Ord for ChangedCssProperty
impl Ord for ChangedCssProperty
Source§fn cmp(&self, other: &ChangedCssProperty) -> Ordering
fn cmp(&self, other: &ChangedCssProperty) -> 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 PartialEq for ChangedCssProperty
impl PartialEq for ChangedCssProperty
Source§impl PartialOrd for ChangedCssProperty
impl PartialOrd for ChangedCssProperty
impl Eq for ChangedCssProperty
impl StructuralPartialEq for ChangedCssProperty
Auto Trait Implementations§
impl Freeze for ChangedCssProperty
impl RefUnwindSafe for ChangedCssProperty
impl Send for ChangedCssProperty
impl Sync for ChangedCssProperty
impl Unpin for ChangedCssProperty
impl UnwindSafe for ChangedCssProperty
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