Struct style::animation::DocumentAnimationSet
source · pub struct DocumentAnimationSet {
pub sets: Arc<RwLock<FxHashMap<AnimationSetKey, ElementAnimationSet>>>,
}
Expand description
A set of animations for a document.
Fields§
§sets: Arc<RwLock<FxHashMap<AnimationSetKey, ElementAnimationSet>>>
The ElementAnimationSet
s that this set contains.
Implementations§
source§impl DocumentAnimationSet
impl DocumentAnimationSet
sourcepub fn has_active_animations(&self, key: &AnimationSetKey) -> bool
pub fn has_active_animations(&self, key: &AnimationSetKey) -> bool
Return whether or not the provided node has active CSS animations.
sourcepub fn has_active_transitions(&self, key: &AnimationSetKey) -> bool
pub fn has_active_transitions(&self, key: &AnimationSetKey) -> bool
Return whether or not the provided node has active CSS transitions.
sourcepub fn get_animation_declarations(
&self,
key: &AnimationSetKey,
time: f64,
shared_lock: &SharedRwLock,
) -> Option<Arc<Locked<PropertyDeclarationBlock>>>
pub fn get_animation_declarations( &self, key: &AnimationSetKey, time: f64, shared_lock: &SharedRwLock, ) -> Option<Arc<Locked<PropertyDeclarationBlock>>>
Return a locked PropertyDeclarationBlock with animation values for the given key and time.
sourcepub fn get_transition_declarations(
&self,
key: &AnimationSetKey,
time: f64,
shared_lock: &SharedRwLock,
) -> Option<Arc<Locked<PropertyDeclarationBlock>>>
pub fn get_transition_declarations( &self, key: &AnimationSetKey, time: f64, shared_lock: &SharedRwLock, ) -> Option<Arc<Locked<PropertyDeclarationBlock>>>
Return a locked PropertyDeclarationBlock with transition values for the given key and time.
sourcepub fn get_all_declarations(
&self,
key: &AnimationSetKey,
time: f64,
shared_lock: &SharedRwLock,
) -> AnimationDeclarations
pub fn get_all_declarations( &self, key: &AnimationSetKey, time: f64, shared_lock: &SharedRwLock, ) -> AnimationDeclarations
Get all the animation declarations for the given key, returning an empty
AnimationDeclarations
if there are no animations.
sourcepub fn cancel_all_animations_for_key(&self, key: &AnimationSetKey)
pub fn cancel_all_animations_for_key(&self, key: &AnimationSetKey)
Cancel all animations for set at the given key.
Trait Implementations§
source§impl Clone for DocumentAnimationSet
impl Clone for DocumentAnimationSet
source§fn clone(&self) -> DocumentAnimationSet
fn clone(&self) -> DocumentAnimationSet
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 DocumentAnimationSet
impl Debug for DocumentAnimationSet
source§impl Default for DocumentAnimationSet
impl Default for DocumentAnimationSet
source§fn default() -> DocumentAnimationSet
fn default() -> DocumentAnimationSet
Returns the “default value” for a type. Read more
source§impl MallocSizeOf for DocumentAnimationSet
impl MallocSizeOf for DocumentAnimationSet
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Auto Trait Implementations§
impl Freeze for DocumentAnimationSet
impl !RefUnwindSafe for DocumentAnimationSet
impl Send for DocumentAnimationSet
impl Sync for DocumentAnimationSet
impl Unpin for DocumentAnimationSet
impl !UnwindSafe for DocumentAnimationSet
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert