pub struct InheritedAnimatedStyleEntry {
pub animationStyles: Option<Vec<CSSAnimationStyle>>,
pub transitionsStyle: Option<CSSStyle>,
}Expand description
Inherited CSS style collection for animated styles from ancestor node.
Fields§
§animationStyles: Option<Vec<CSSAnimationStyle>>Styles coming from the animations of the ancestor, if any, in the style inheritance chain.
transitionsStyle: Option<CSSStyle>The style coming from the transitions of the ancestor, if any, in the style inheritance chain.
Trait Implementations§
Source§impl Clone for InheritedAnimatedStyleEntry
impl Clone for InheritedAnimatedStyleEntry
Source§fn clone(&self) -> InheritedAnimatedStyleEntry
fn clone(&self) -> InheritedAnimatedStyleEntry
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 InheritedAnimatedStyleEntry
impl Debug for InheritedAnimatedStyleEntry
Source§impl Default for InheritedAnimatedStyleEntry
impl Default for InheritedAnimatedStyleEntry
Source§fn default() -> InheritedAnimatedStyleEntry
fn default() -> InheritedAnimatedStyleEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InheritedAnimatedStyleEntry
impl<'de> Deserialize<'de> for InheritedAnimatedStyleEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InheritedAnimatedStyleEntry
impl RefUnwindSafe for InheritedAnimatedStyleEntry
impl Send for InheritedAnimatedStyleEntry
impl Sync for InheritedAnimatedStyleEntry
impl Unpin for InheritedAnimatedStyleEntry
impl UnsafeUnpin for InheritedAnimatedStyleEntry
impl UnwindSafe for InheritedAnimatedStyleEntry
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