pub struct TimelineTrack {
pub track_type: TimelineTrackType,
pub enabled: Option<bool>,
pub effect_params: Option<TimelineEffectParams>,
pub keys: Vec<TimelineKey>,
}Expand description
TS TimelineTrack.
Fields§
§track_type: TimelineTrackTypeTS field type
enabled: Option<bool>§effect_params: Option<TimelineEffectParams>§keys: Vec<TimelineKey>Trait Implementations§
Source§impl Clone for TimelineTrack
impl Clone for TimelineTrack
Source§fn clone(&self) -> TimelineTrack
fn clone(&self) -> TimelineTrack
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 TimelineTrack
impl RefUnwindSafe for TimelineTrack
impl Send for TimelineTrack
impl Sync for TimelineTrack
impl Unpin for TimelineTrack
impl UnsafeUnpin for TimelineTrack
impl UnwindSafe for TimelineTrack
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