pub struct AnimationEffectBuilder { /* private fields */ }Available on crate features
experimental and Animation and Runtime and DOM only.Implementations§
Source§impl AnimationEffectBuilder
impl AnimationEffectBuilder
Sourcepub fn iteration_start(&mut self, v: f64) -> &mut Self
pub fn iteration_start(&mut self, v: f64) -> &mut Self
AnimationEffect’s iteration start.
Sourcepub fn iterations(&mut self, v: f64) -> &mut Self
pub fn iterations(&mut self, v: f64) -> &mut Self
AnimationEffect’s iterations.
Sourcepub fn backend_node_id(&mut self, v: BackendNodeId) -> &mut Self
pub fn backend_node_id(&mut self, v: BackendNodeId) -> &mut Self
AnimationEffect’s target node.
Sourcepub fn keyframes_rule(&mut self, v: KeyframesRule) -> &mut Self
pub fn keyframes_rule(&mut self, v: KeyframesRule) -> &mut Self
AnimationEffect’s keyframes.
pub fn build(&mut self) -> Result<AnimationEffect, &'static str>
Trait Implementations§
Source§impl Clone for AnimationEffectBuilder
impl Clone for AnimationEffectBuilder
Source§fn clone(&self) -> AnimationEffectBuilder
fn clone(&self) -> AnimationEffectBuilder
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 AnimationEffectBuilder
impl Debug for AnimationEffectBuilder
Auto Trait Implementations§
impl Freeze for AnimationEffectBuilder
impl RefUnwindSafe for AnimationEffectBuilder
impl Send for AnimationEffectBuilder
impl Sync for AnimationEffectBuilder
impl Unpin for AnimationEffectBuilder
impl UnwindSafe for AnimationEffectBuilder
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