pub enum MazePathDirection {
Up,
Down,
Left,
Right,
None,
}Expand description
Variants§
Implementations§
Source§impl MazePathDirection
impl MazePathDirection
Sourcepub fn unicode_char(&self) -> char
pub fn unicode_char(&self) -> char
Returns the unicode character associated with the given direction instance
§Returns
Unicode character
Auto Trait Implementations§
impl Freeze for MazePathDirection
impl RefUnwindSafe for MazePathDirection
impl Send for MazePathDirection
impl Sync for MazePathDirection
impl Unpin for MazePathDirection
impl UnwindSafe for MazePathDirection
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