pub struct TrackInfo {
pub mode: Option<String>,
pub params: Vec<f64>,
pub accelerate: bool,
pub decelerate: bool,
pub twopoint: bool,
pub timecontrol: bool,
pub group_num: usize,
pub group_index: usize,
pub group_name: Option<String>,
}Available on crate feature
generic only.Expand description
トラックバー情報。
Fields§
§mode: Option<String>トラックバーの移動モードの名称。 Noneの場合は移動なしです。
params: Vec<f64>トラックバーの設定値。
accelerate: boolトラックバーの加速度が有効かどうか。
decelerate: boolトラックバーの減速度が有効かどうか。
twopoint: boolトラックバーの中間点無視が有効かどうか。
timecontrol: boolトラックバーの時間制御が有効かどうか。
group_num: usizeトラックバーグループのトラック数。 グループ化が解除されている場合は1になります。
group_index: usizeトラックバーグループ内でのインデックス。
group_name: Option<String>所属トラックバーグループ名。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TrackInfo
impl RefUnwindSafe for TrackInfo
impl Send for TrackInfo
impl Sync for TrackInfo
impl Unpin for TrackInfo
impl UnsafeUnpin for TrackInfo
impl UnwindSafe for TrackInfo
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more