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