pub struct SetKeyframeKey {
pub method: SetKeyframeKeyMethod,
pub params: SetKeyframeKeyParams,
}Expand description
Modifies the keyframe rule key text. setKeyframeKey
Fields§
§method: SetKeyframeKeyMethod§params: SetKeyframeKeyParamsImplementations§
Source§impl SetKeyframeKey
impl SetKeyframeKey
pub fn builder() -> SetKeyframeKeyBuilder
Source§impl SetKeyframeKey
impl SetKeyframeKey
pub const IDENTIFIER: &'static str = "CSS.setKeyframeKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetKeyframeKey
impl Clone for SetKeyframeKey
Source§fn clone(&self) -> SetKeyframeKey
fn clone(&self) -> SetKeyframeKey
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 CommandResult for SetKeyframeKey
impl CommandResult for SetKeyframeKey
type Result = SetKeyframeKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetKeyframeKey
impl Debug for SetKeyframeKey
Source§impl<'de> Deserialize<'de> for SetKeyframeKey
impl<'de> Deserialize<'de> for SetKeyframeKey
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
Source§impl From<SetKeyframeKey> for BrowserProtocolCommands
impl From<SetKeyframeKey> for BrowserProtocolCommands
Source§fn from(v: SetKeyframeKey) -> Self
fn from(v: SetKeyframeKey) -> Self
Converts to this type from the input type.
Source§impl From<SetKeyframeKey> for Command
impl From<SetKeyframeKey> for Command
Source§fn from(v: SetKeyframeKey) -> Self
fn from(v: SetKeyframeKey) -> Self
Converts to this type from the input type.
Source§impl From<SetKeyframeKey> for CssCommands
impl From<SetKeyframeKey> for CssCommands
Source§fn from(v: SetKeyframeKey) -> Self
fn from(v: SetKeyframeKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetKeyframeKey
impl PartialEq for SetKeyframeKey
Source§impl Serialize for SetKeyframeKey
impl Serialize for SetKeyframeKey
Source§impl TryFrom<BrowserProtocolCommands> for SetKeyframeKey
impl TryFrom<BrowserProtocolCommands> for SetKeyframeKey
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetKeyframeKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetKeyframeKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetKeyframeKey
impl TryFrom<Command> for SetKeyframeKey
Source§impl TryFrom<CssCommands> for SetKeyframeKey
impl TryFrom<CssCommands> for SetKeyframeKey
Source§type Error = CssCommands
type Error = CssCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: CssCommands,
) -> Result<Self, <SetKeyframeKey as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <SetKeyframeKey as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetKeyframeKey
Auto Trait Implementations§
impl Freeze for SetKeyframeKey
impl RefUnwindSafe for SetKeyframeKey
impl Send for SetKeyframeKey
impl Sync for SetKeyframeKey
impl Unpin for SetKeyframeKey
impl UnsafeUnpin for SetKeyframeKey
impl UnwindSafe for SetKeyframeKey
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