pub struct Puzzle {
pub cmds_str: String,
pub mode: usize,
pub puzzle: Vec<Vec<i32>>,
pub start_time: u128,
pub end_time: u128,
/* private fields */
}Fields§
§cmds_str: String§mode: usize§puzzle: Vec<Vec<i32>>§start_time: u128§end_time: u128Implementations§
Auto Trait Implementations§
impl Freeze for Puzzle
impl RefUnwindSafe for Puzzle
impl Send for Puzzle
impl Sync for Puzzle
impl Unpin for Puzzle
impl UnwindSafe for Puzzle
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