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