pub enum Advanced {
North,
NorthEast,
East,
SouthEast,
South,
SouthWest,
West,
NorthWest,
None,
}
Variants§
North
Opposite of South, up
NorthEast
Opposite of SouthWest, up-right
East
Opposite of West, right
SouthEast
Opposite of NorthWest, down-right
South
Opposite of North, down
SouthWest
Opposite of NorthEast, down-left
West
Opposite of East, left
NorthWest
Opposite of SouthEast, up-left
None
Nothing
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Advanced
impl<'de> Deserialize<'de> for Advanced
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 Random for Advanced
impl Random for Advanced
impl Copy for Advanced
impl Eq for Advanced
impl StructuralPartialEq for Advanced
Auto Trait Implementations§
impl Freeze for Advanced
impl RefUnwindSafe for Advanced
impl Send for Advanced
impl Sync for Advanced
impl Unpin for Advanced
impl UnwindSafe for Advanced
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