pub struct Solution<T: Copy> {
pub collection: Vec<Nonogram<T>>,
pub status: Status,
}
Expand description
A collection of all solutions to a Layout.
Fields§
§collection: Vec<Nonogram<T>>
All found solutions to the Layout.
status: Status
The status when creating this Solution.
Auto Trait Implementations§
impl<T> Freeze for Solution<T>
impl<T> RefUnwindSafe for Solution<T>where
T: RefUnwindSafe,
impl<T> Send for Solution<T>where
T: Send,
impl<T> Sync for Solution<T>where
T: Sync,
impl<T> Unpin for Solution<T>where
T: Unpin,
impl<T> UnwindSafe for Solution<T>where
T: UnwindSafe,
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