pub struct SeekAnimations {
pub method: SeekAnimationsMethod,
pub params: SeekAnimationsParams,
}Expand description
Seek a set of animations to a particular time within each animation. seekAnimations
Fields§
§method: SeekAnimationsMethod§params: SeekAnimationsParamsImplementations§
Source§impl SeekAnimations
impl SeekAnimations
pub fn builder() -> SeekAnimationsBuilder
Source§impl SeekAnimations
impl SeekAnimations
pub const IDENTIFIER: &'static str = "Animation.seekAnimations"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SeekAnimations
impl Clone for SeekAnimations
Source§fn clone(&self) -> SeekAnimations
fn clone(&self) -> SeekAnimations
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 SeekAnimations
impl CommandResult for SeekAnimations
type Result = SeekAnimationsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SeekAnimations
impl Debug for SeekAnimations
Source§impl<'de> Deserialize<'de> for SeekAnimations
impl<'de> Deserialize<'de> for SeekAnimations
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<SeekAnimations> for AnimationCommands
impl From<SeekAnimations> for AnimationCommands
Source§fn from(v: SeekAnimations) -> Self
fn from(v: SeekAnimations) -> Self
Converts to this type from the input type.
Source§impl From<SeekAnimations> for BrowserProtocolCommands
impl From<SeekAnimations> for BrowserProtocolCommands
Source§fn from(v: SeekAnimations) -> Self
fn from(v: SeekAnimations) -> Self
Converts to this type from the input type.
Source§impl From<SeekAnimations> for Command
impl From<SeekAnimations> for Command
Source§fn from(v: SeekAnimations) -> Self
fn from(v: SeekAnimations) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SeekAnimations
impl PartialEq for SeekAnimations
Source§impl Serialize for SeekAnimations
impl Serialize for SeekAnimations
Source§impl TryFrom<AnimationCommands> for SeekAnimations
impl TryFrom<AnimationCommands> for SeekAnimations
Source§type Error = AnimationCommands
type Error = AnimationCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AnimationCommands,
) -> Result<Self, <SeekAnimations as TryFrom<AnimationCommands>>::Error>
fn try_from( e: AnimationCommands, ) -> Result<Self, <SeekAnimations as TryFrom<AnimationCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for SeekAnimations
impl TryFrom<BrowserProtocolCommands> for SeekAnimations
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, <SeekAnimations as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SeekAnimations as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SeekAnimations
impl TryFrom<Command> for SeekAnimations
impl StructuralPartialEq for SeekAnimations
Auto Trait Implementations§
impl Freeze for SeekAnimations
impl RefUnwindSafe for SeekAnimations
impl Send for SeekAnimations
impl Sync for SeekAnimations
impl Unpin for SeekAnimations
impl UnsafeUnpin for SeekAnimations
impl UnwindSafe for SeekAnimations
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