pub struct SolverBlock {
pub start_index: i32,
pub count: u16,
pub block_type: u8,
pub color_index: u8,
}Expand description
Solver block describes a unit of work. (b3SolverBlock)
Fields§
§start_index: i32§count: u16§block_type: u8SolverBlockType
color_index: u8Trait Implementations§
Source§impl Clone for SolverBlock
impl Clone for SolverBlock
Source§fn clone(&self) -> SolverBlock
fn clone(&self) -> SolverBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SolverBlock
Source§impl Debug for SolverBlock
impl Debug for SolverBlock
Source§impl Default for SolverBlock
impl Default for SolverBlock
Source§fn default() -> SolverBlock
fn default() -> SolverBlock
Returns the “default value” for a type. Read more
impl Eq for SolverBlock
Source§impl PartialEq for SolverBlock
impl PartialEq for SolverBlock
impl StructuralPartialEq for SolverBlock
Auto Trait Implementations§
impl Freeze for SolverBlock
impl RefUnwindSafe for SolverBlock
impl Send for SolverBlock
impl Sync for SolverBlock
impl Unpin for SolverBlock
impl UnsafeUnpin for SolverBlock
impl UnwindSafe for SolverBlock
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