[][src]Struct entity_store_helper::NeighbourCount

pub struct NeighbourCount { /* fields omitted */ }

Table for managing counts associated with directions. This is used by the generated spatial hash as storage for the neighbour_count aggregate.

Methods

impl NeighbourCount
[src]

pub fn new() -> Self
[src]

pub fn inc(&mut self, direction: Direction)
[src]

pub fn dec(&mut self, direction: Direction)
[src]

pub fn get(&self, direction: Direction) -> u8
[src]

pub fn has(&self, direction: Direction) -> bool
[src]

pub fn bitmap_raw(&self) -> u8
[src]

pub fn bitmap(&self) -> DirectionBitmap
[src]

Trait Implementations

impl Copy for NeighbourCount
[src]

impl Default for NeighbourCount
[src]

impl Clone for NeighbourCount
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NeighbourCount
[src]

impl Serialize for NeighbourCount
[src]

impl<'de> Deserialize<'de> for NeighbourCount
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]