pub struct BpmInfo {
pub tempo: f32,
pub beat: i32,
pub start: f64,
pub offset: f32,
}Available on crate feature
generic only.Expand description
Fields§
§tempo: f32テンポ。
beat: i32拍子。
start: f64開始位置(秒)。
offset: f32拍子オフセット(秒)。
Trait Implementations§
impl Copy for BpmInfo
Source§impl PartialOrd for BpmInfo
impl PartialOrd for BpmInfo
impl StructuralPartialEq for BpmInfo
Auto Trait Implementations§
impl Freeze for BpmInfo
impl RefUnwindSafe for BpmInfo
impl Send for BpmInfo
impl Sync for BpmInfo
impl Unpin for BpmInfo
impl UnsafeUnpin for BpmInfo
impl UnwindSafe for BpmInfo
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