pub struct OldBeatmapFile {
pub _version: String,
pub _notes: Vec<OldNote>,
pub _sliders: Vec<OldSlider>,
pub _obstacles: Vec<OldObstacle>,
pub _events: Vec<OldEvent>,
pub _waypoints: Vec<Value>,
pub customData: HashMap<String, Value>,
}Fields§
§_version: String§_notes: Vec<OldNote>§_sliders: Vec<OldSlider>§_obstacles: Vec<OldObstacle>§_events: Vec<OldEvent>§_waypoints: Vec<Value>§customData: HashMap<String, Value>Trait Implementations§
Source§impl Debug for OldBeatmapFile
impl Debug for OldBeatmapFile
Source§impl<'de> Deserialize<'de> for OldBeatmapFile
impl<'de> Deserialize<'de> for OldBeatmapFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OldBeatmapFile
impl PartialEq for OldBeatmapFile
Source§impl Serialize for OldBeatmapFile
impl Serialize for OldBeatmapFile
impl StructuralPartialEq for OldBeatmapFile
Auto Trait Implementations§
impl Freeze for OldBeatmapFile
impl RefUnwindSafe for OldBeatmapFile
impl Send for OldBeatmapFile
impl Sync for OldBeatmapFile
impl Unpin for OldBeatmapFile
impl UnwindSafe for OldBeatmapFile
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