pub struct CSSKeyframeRule {
pub styleSheetId: Option<StyleSheetId>,
pub origin: StyleSheetOrigin,
pub keyText: ProtocolValue,
pub style: CSSStyle,
}Expand description
CSS keyframe rule representation.
Fields§
§styleSheetId: Option<StyleSheetId>The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
origin: StyleSheetOriginParent stylesheet’s origin.
keyText: ProtocolValueAssociated key text.
style: CSSStyleAssociated style declaration.
Trait Implementations§
Source§impl Clone for CSSKeyframeRule
impl Clone for CSSKeyframeRule
Source§fn clone(&self) -> CSSKeyframeRule
fn clone(&self) -> CSSKeyframeRule
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 CSSKeyframeRule
impl Debug for CSSKeyframeRule
Source§impl Default for CSSKeyframeRule
impl Default for CSSKeyframeRule
Source§fn default() -> CSSKeyframeRule
fn default() -> CSSKeyframeRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CSSKeyframeRule
impl<'de> Deserialize<'de> for CSSKeyframeRule
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 CSSKeyframeRule
impl RefUnwindSafe for CSSKeyframeRule
impl Send for CSSKeyframeRule
impl Sync for CSSKeyframeRule
impl Unpin for CSSKeyframeRule
impl UnsafeUnpin for CSSKeyframeRule
impl UnwindSafe for CSSKeyframeRule
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