[−][src]Struct dancing_links::grid::Column
A column inside of a Grid.
Implementations
impl Column[src]
pub fn cover(self_ptr: *mut Self)[src]
Cover entire column, and any rows that that appear in this column.
pub fn uncover(self_ptr: *mut Self)[src]
Uncover entire column, and any rows that appear in this column.
pub fn is_empty(self_ptr: *const Self) -> bool[src]
Return true if there are no uncovered Nodes in this column.
pub fn row_indices(self_ptr: *const Self) -> impl Iterator<Item = usize>[src]
Return an iterator over the row indices of all uncovered Nodes in this
column.
pub fn rows(self_ptr: *const Self) -> impl Iterator<Item = *const Node>[src]
Return an iterator of pointers to all uncovered Nodes in this column.
pub fn nodes_mut(self_ptr: *mut Self) -> impl Iterator<Item = *mut Node>[src]
Return an iterator of mut pointers to all uncovered Nodes in this
column.
pub fn index(self_ptr: *const Self) -> usize[src]
Return the column index.
pub fn size(self_ptr: *const Self) -> usize[src]
Return the number of uncovered nodes in this column.
Trait Implementations
impl Debug for Column[src]
impl Eq for Column[src]
impl Hash for Column[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Column> for Column[src]
impl StructuralEq for Column[src]
impl StructuralPartialEq for Column[src]
Auto Trait Implementations
impl RefUnwindSafe for Column
impl !Send for Column
impl !Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,