pub struct HitObject {
pub pos: Pos2,
pub start_time: f32,
pub kind: HitObjectKind,
pub sound: u8,
}
Expand description
“Intermediate” hitobject created through parsing. Each mode will handle them differently.
Fields§
§pos: Pos2
§start_time: f32
§kind: HitObjectKind
§sound: u8
Implementations§
Trait Implementations§
Source§impl PartialOrd for HitObject
impl PartialOrd for HitObject
impl StructuralPartialEq for HitObject
Auto Trait Implementations§
impl Freeze for HitObject
impl RefUnwindSafe for HitObject
impl Send for HitObject
impl Sync for HitObject
impl Unpin for HitObject
impl UnwindSafe for HitObject
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