pub struct Search {
pub boxes: [Hash; 9],
pub bounds: Area,
}Expand description
The nine boxes a search has to look in, and where the search area is.
Fields§
§boxes: [Hash; 9]The nine boxes, centre first. A box with no bits in it was ruled out and is not to be searched.
bounds: AreaThe rectangle the boxes are covering, which is what a candidate is finally tested against.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Search
impl RefUnwindSafe for Search
impl Send for Search
impl Sync for Search
impl Unpin for Search
impl UnsafeUnpin for Search
impl UnwindSafe for Search
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