#[repr(C)]pub enum RaceCheckpointType {
Normal = 0,
Finish = 1,
Nothing = 2,
AirNormal = 3,
AirFinish = 4,
AirOne = 5,
AirTwo = 6,
AirThree = 7,
AirFour = 8,
None = 9,
}
Expand description
Types Of Race Checkpoints
Variants§
Normal = 0
Normal, must have nextPosition, else it shows as RACE_FINISH
Finish = 1
Finish checkpoint, must have no nextPosition, else it shows as RACE_NORMAL
Nothing = 2
Nothing (Only the checkpoint without anything on it)
AirNormal = 3
Normal Air Checkpoint
AirFinish = 4
Air Finish Checkpoint
AirOne = 5
Air (rotates and stops)
AirTwo = 6
Air (increases, decreases and disappears)
AirThree = 7
Air (swings down and up)
AirFour = 8
Air (swings up and down)
None = 9
None
Trait Implementations§
Source§impl Clone for RaceCheckpointType
impl Clone for RaceCheckpointType
Source§fn clone(&self) -> RaceCheckpointType
fn clone(&self) -> RaceCheckpointType
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 moreSource§impl Debug for RaceCheckpointType
impl Debug for RaceCheckpointType
Source§impl PartialEq for RaceCheckpointType
impl PartialEq for RaceCheckpointType
impl Copy for RaceCheckpointType
impl StructuralPartialEq for RaceCheckpointType
Auto Trait Implementations§
impl Freeze for RaceCheckpointType
impl RefUnwindSafe for RaceCheckpointType
impl Send for RaceCheckpointType
impl Sync for RaceCheckpointType
impl Unpin for RaceCheckpointType
impl UnwindSafe for RaceCheckpointType
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