pub struct AnimationStarted {
pub method: AnimationStartedMethod,
pub params: AnimationStartedParams,
}Expand description
Event for animation that has been started. animationStarted
Fields§
§method: AnimationStartedMethod§params: AnimationStartedParamsImplementations§
Source§impl AnimationStarted
impl AnimationStarted
pub const IDENTIFIER: &'static str = "Animation.animationStarted"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AnimationStarted
impl Clone for AnimationStarted
Source§fn clone(&self) -> AnimationStarted
fn clone(&self) -> AnimationStarted
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 AnimationStarted
impl Debug for AnimationStarted
Source§impl<'de> Deserialize<'de> for AnimationStarted
impl<'de> Deserialize<'de> for AnimationStarted
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<AnimationStarted> for AnimationEvents
impl From<AnimationStarted> for AnimationEvents
Source§fn from(v: AnimationStarted) -> Self
fn from(v: AnimationStarted) -> Self
Converts to this type from the input type.
Source§impl From<AnimationStarted> for BrowserProtocolEvents
impl From<AnimationStarted> for BrowserProtocolEvents
Source§fn from(v: AnimationStarted) -> Self
fn from(v: AnimationStarted) -> Self
Converts to this type from the input type.
Source§impl From<AnimationStarted> for Event
impl From<AnimationStarted> for Event
Source§fn from(v: AnimationStarted) -> Self
fn from(v: AnimationStarted) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AnimationStarted
impl PartialEq for AnimationStarted
Source§impl Serialize for AnimationStarted
impl Serialize for AnimationStarted
Source§impl TryFrom<AnimationEvents> for AnimationStarted
impl TryFrom<AnimationEvents> for AnimationStarted
Source§type Error = AnimationEvents
type Error = AnimationEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: AnimationEvents,
) -> Result<Self, <AnimationStarted as TryFrom<AnimationEvents>>::Error>
fn try_from( e: AnimationEvents, ) -> Result<Self, <AnimationStarted as TryFrom<AnimationEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for AnimationStarted
impl TryFrom<BrowserProtocolEvents> for AnimationStarted
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <AnimationStarted as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AnimationStarted as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AnimationStarted
impl TryFrom<Event> for AnimationStarted
impl StructuralPartialEq for AnimationStarted
Auto Trait Implementations§
impl Freeze for AnimationStarted
impl RefUnwindSafe for AnimationStarted
impl Send for AnimationStarted
impl Sync for AnimationStarted
impl Unpin for AnimationStarted
impl UnsafeUnpin for AnimationStarted
impl UnwindSafe for AnimationStarted
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