pub struct TimelineKey {
pub interpolation: TimelineKeyInterpolation,
pub time: Fraction,
pub selected: Option<bool>,
pub data: TimelineKeyData,
}Expand description
TS TimelineKey (common fields intersected with the tagged union).
Fields§
§interpolation: TimelineKeyInterpolation§time: Fraction§selected: Option<bool>§data: TimelineKeyDataTrait Implementations§
Source§impl Clone for TimelineKey
impl Clone for TimelineKey
Source§fn clone(&self) -> TimelineKey
fn clone(&self) -> TimelineKey
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 TimelineKey
impl RefUnwindSafe for TimelineKey
impl Send for TimelineKey
impl Sync for TimelineKey
impl Unpin for TimelineKey
impl UnsafeUnpin for TimelineKey
impl UnwindSafe for TimelineKey
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