#[repr(C)]pub struct Piece {
pub name: *const c_char,
pub pos: Pos3,
pub bb0: Pos3,
pub bb1: Pos3,
pub rot: u8,
pub depth: i8,
pub type_: i8,
pub next: *mut Piece,
}Fields§
§name: *const c_char§pos: Pos3§bb0: Pos3§bb1: Pos3§rot: u8§depth: i8§type_: i8§next: *mut PieceTrait Implementations§
Auto Trait Implementations§
impl Freeze for Piece
impl RefUnwindSafe for Piece
impl !Send for Piece
impl !Sync for Piece
impl Unpin for Piece
impl UnwindSafe for Piece
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