Trait gut::CellEdge[][src]

pub trait CellEdge {
    fn edge<I>(&self, i: I) -> EdgeIndex
    where
        I: Copy + Into<CellEdgeIndex>
;
fn cell_edge<I>(&self, i: I, k: usize) -> Option<CellEdgeIndex>
    where
        I: Copy + Into<CellIndex>
;
fn num_cell_edges(&self) -> usize;
fn num_edges_at_cell<I>(&self, i: I) -> usize
    where
        I: Copy + Into<CellIndex>
; fn cell_to_edge<I>(&self, i: I, k: usize) -> Option<EdgeIndex>
    where
        I: Copy + Into<CellIndex>
, { ... } }

Required methods

Index of the destination element given the topology index.

Toplogy index: where the data lives in an attribute array.

Topology quantifier. Number of connectors in total.

Topology quantifier. Number of connectors at a particular element.

Provided methods

Index of the destination element from the source index.

Implementors