pub struct AnimatedTrackItem {
pub step: TrackStep,
pub values: Vec<f64>,
pub flags: TrackFlags,
pub script_name: String,
pub parameter: Option<f64>,
pub time_curve: Option<TimeCurve>,
}Expand description
スクリプトや時間制御を含んだトラックバー項目です。
Fields§
§step: TrackStep移動単位。
values: Vec<f64>中間点ごとの値。
flags: TrackFlagsフラグ。
script_name: Stringトラックバースクリプトの名前。
parameter: Option<f64>設定値。
time_curve: Option<TimeCurve>時間制御のカーブ。
Trait Implementations§
Source§impl Clone for AnimatedTrackItem
impl Clone for AnimatedTrackItem
Source§fn clone(&self) -> AnimatedTrackItem
fn clone(&self) -> AnimatedTrackItem
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 AnimatedTrackItem
impl Debug for AnimatedTrackItem
Source§impl Display for AnimatedTrackItem
impl Display for AnimatedTrackItem
Source§impl FromStr for AnimatedTrackItem
impl FromStr for AnimatedTrackItem
Source§impl PartialEq for AnimatedTrackItem
impl PartialEq for AnimatedTrackItem
impl StructuralPartialEq for AnimatedTrackItem
Auto Trait Implementations§
impl Freeze for AnimatedTrackItem
impl RefUnwindSafe for AnimatedTrackItem
impl Send for AnimatedTrackItem
impl Sync for AnimatedTrackItem
impl Unpin for AnimatedTrackItem
impl UnwindSafe for AnimatedTrackItem
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