Struct cdp::css::CssKeyframeRule
[−]
[src]
pub struct CssKeyframeRule<'a> { pub style_sheet_id: Option<StyleSheetId<'a>>, pub origin: StyleSheetOrigin, pub key_text: Value<'a>, pub style: CssStyle<'a>, }
[Experimental] CSS keyframe rule representation.
Fields
style_sheet_id: Option<StyleSheetId<'a>>
The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.
origin: StyleSheetOrigin
Parent stylesheet's origin.
key_text: Value<'a>
Associated key text.
style: CssStyle<'a>
Associated style declaration.
Trait Implementations
impl<'a> Clone for CssKeyframeRule<'a>
[src]
fn clone(&self) -> CssKeyframeRule<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for CssKeyframeRule<'a>
[src]
impl<'a> PartialEq for CssKeyframeRule<'a>
[src]
fn eq(&self, __arg_0: &CssKeyframeRule<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CssKeyframeRule<'a>) -> bool
[src]
This method tests for !=
.