#[repr(i32)]
pub enum AleAction {
Show 18 variants
Noop,
Fire,
Up,
Right,
Left,
Down,
UpRight,
UpLeft,
DownRight,
DownLeft,
UpFire,
RightFire,
LeftFire,
DownFire,
UpRightFire,
UpLeftFire,
DownRightFire,
DownLeftFire,
}Variants
Noop
Fire
Up
Right
Left
Down
UpRight
UpLeft
DownRight
DownLeft
UpFire
RightFire
LeftFire
DownFire
UpRightFire
UpLeftFire
DownRightFire
DownLeftFire
Trait Implementations
Converts an i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts a usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts a f32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Auto Trait Implementations
impl RefUnwindSafe for AleAction
impl UnwindSafe for AleAction
Blanket Implementations
Mutably borrows from an owned value. Read more