pub struct Board { /* private fields */ }
Expand description
Row oriented. Visually look like this:
- {
- {—–}
- {—–}
- {—–}
- } Board coordinates go right and down.
Implementations§
Trait Implementations§
Source§impl TryFrom<&str> for Board
impl TryFrom<&str> for Board
Source§fn try_from(value: &str) -> Result<Self, Self::Error>
fn try_from(value: &str) -> Result<Self, Self::Error>
Source§type Error = TryFromError
type Error = TryFromError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for Board
impl RefUnwindSafe for Board
impl Send for Board
impl Sync for Board
impl Unpin for Board
impl UnwindSafe for Board
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