pub enum HitObjectKind {
Circle,
Slider {
kind: SliderKind,
curve_points: Vec<(i32, i32)>,
length: f64,
edge_sounds: Vec<HitSound>,
slide_count: i32,
},
Spinner {
end_time: i32,
},
HoldNote {
end_time: i32,
},
}
Variants§
Trait Implementations§
Source§impl Clone for HitObjectKind
impl Clone for HitObjectKind
Source§fn clone(&self) -> HitObjectKind
fn clone(&self) -> HitObjectKind
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for HitObjectKind
impl RefUnwindSafe for HitObjectKind
impl Send for HitObjectKind
impl Sync for HitObjectKind
impl Unpin for HitObjectKind
impl UnwindSafe for HitObjectKind
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