[][src]Struct dancing_links::grid::Column

#[repr(C)]pub struct Column { /* fields omitted */ }

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]

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.