pub struct InheritedAnimatedStyleEntry {
pub animation_styles: Option<Vec<CssAnimationStyle>>,
pub transitions_style: Option<CssStyle>,
}Expand description
Inherited CSS style collection for animated styles from ancestor node. InheritedAnimatedStyleEntry
Fields§
§animation_styles: Option<Vec<CssAnimationStyle>>Styles coming from the animations of the ancestor, if any, in the style inheritance chain.
transitions_style: Option<CssStyle>The style coming from the transitions of the ancestor, if any, in the style inheritance chain.
Implementations§
Source§impl InheritedAnimatedStyleEntry
impl InheritedAnimatedStyleEntry
pub const IDENTIFIER: &'static str = "CSS.InheritedAnimatedStyleEntry"
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
impl StructuralPartialEq for InheritedAnimatedStyleEntry
Auto Trait Implementations§
impl Freeze for InheritedAnimatedStyleEntry
impl RefUnwindSafe for InheritedAnimatedStyleEntry
impl Send for InheritedAnimatedStyleEntry
impl Sync for InheritedAnimatedStyleEntry
impl Unpin 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