Enum h3ron_graph::graph::node::GapBridgedCellNode[][src]

pub enum GapBridgedCellNode {
    DirectConnection(H3Cell),
    WithGap(H3CellH3Cell),
    NoConnection(H3Cell),
}
Expand description

the type of membershipt a cell has within a graph

Variants

DirectConnection(H3Cell)

the cell is connected to the graph

Tuple Fields of DirectConnection

0: H3Cell
WithGap(H3CellH3Cell)

cell self.0 is not connected to the graph, but the next best neighbor self.1 is

Tuple Fields of WithGap

0: H3Cell1: H3Cell
NoConnection(H3Cell)

cell is outside of the graph

Tuple Fields of NoConnection

0: H3Cell

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.