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