pub(crate) struct ActiveTransition {
element_id: String,
property: String,
from: String,
to: String,
spec: TransitionSpec,
start_ms: f32,
}Expand description
1要素・1プロパティのトランジション進行状態。
Fields§
§element_id: String§property: String§from: String§to: String§spec: TransitionSpec§start_ms: f32開始時刻(ms)。
Trait Implementations§
Source§impl Clone for ActiveTransition
impl Clone for ActiveTransition
Source§fn clone(&self) -> ActiveTransition
fn clone(&self) -> ActiveTransition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ActiveTransition
impl RefUnwindSafe for ActiveTransition
impl Send for ActiveTransition
impl Sync for ActiveTransition
impl Unpin for ActiveTransition
impl UnsafeUnpin for ActiveTransition
impl UnwindSafe for ActiveTransition
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