Struct dioxus_html::events::AnimationData
source · pub struct AnimationData {
pub animation_name: String,
pub pseudo_element: String,
pub elapsed_time: f32,
}
Fields§
§animation_name: String
§pseudo_element: String
§elapsed_time: f32
Trait Implementations§
source§impl Clone for AnimationData
impl Clone for AnimationData
source§fn clone(&self) -> AnimationData
fn clone(&self) -> AnimationData
Returns a copy 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 AnimationData
impl Debug for AnimationData
source§impl<'de> Deserialize<'de> for AnimationData
impl<'de> Deserialize<'de> for AnimationData
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<&AnimationEvent> for AnimationData
impl From<&AnimationEvent> for AnimationData
source§fn from(e: &AnimationEvent) -> Self
fn from(e: &AnimationEvent) -> Self
Converts to this type from the input type.
source§impl From<&Event> for AnimationData
impl From<&Event> for AnimationData
source§impl From<Event> for AnimationData
impl From<Event> for AnimationData
source§impl PartialEq<AnimationData> for AnimationData
impl PartialEq<AnimationData> for AnimationData
source§fn eq(&self, other: &AnimationData) -> bool
fn eq(&self, other: &AnimationData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AnimationData
impl Serialize for AnimationData
impl StructuralPartialEq for AnimationData
Auto Trait Implementations§
impl RefUnwindSafe for AnimationData
impl Send for AnimationData
impl Sync for AnimationData
impl Unpin for AnimationData
impl UnwindSafe for AnimationData
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