Struct direction::DirectionTable[][src]

pub struct DirectionTable<T> { /* fields omitted */ }

Implementations

impl<T> DirectionTable<T>[src]

pub fn new_fn<F: FnMut(Direction) -> T>(f: F) -> Self[src]

pub const fn new_array(values: [T; 8]) -> Self[src]

pub fn set(&mut self, direction: Direction, value: T)[src]

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

pub fn get_mut(&mut self, direction: Direction) -> &mut T[src]

pub fn iter(&self) -> DirectionTableIter<'_, T>[src]

pub fn iter_mut(&mut self) -> DirectionTableIterMut<'_, T>[src]

pub fn directions(&self) -> DirectionIter

Notable traits for DirectionIter

impl Iterator for DirectionIter type Item = Direction;
[src]

pub fn enumerate(&self) -> DirectionTableEnumerate<'_, T>[src]

pub fn enumerate_mut(&mut self) -> DirectionTableEnumerateMut<'_, T>[src]

impl<T: Clone> DirectionTable<T>[src]

pub fn new_clone(value: T) -> Self[src]

impl<T: Default> DirectionTable<T>[src]

pub fn new_default() -> Self[src]

Trait Implementations

impl<T: Clone> Clone for DirectionTable<T>[src]

impl<T: Copy> Copy for DirectionTable<T>[src]

impl<T: Debug> Debug for DirectionTable<T>[src]

impl<T: Default> Default for DirectionTable<T>[src]

impl<T: Eq> Eq for DirectionTable<T>[src]

impl<T: Hash> Hash for DirectionTable<T>[src]

impl<T> Index<Direction> for DirectionTable<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<Direction> for DirectionTable<T>[src]

impl<T: Ord> Ord for DirectionTable<T>[src]

impl<T: PartialEq> PartialEq<DirectionTable<T>> for DirectionTable<T>[src]

impl<T: PartialOrd> PartialOrd<DirectionTable<T>> for DirectionTable<T>[src]

impl<T> StructuralEq for DirectionTable<T>[src]

impl<T> StructuralPartialEq for DirectionTable<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for DirectionTable<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for DirectionTable<T> where
    T: Send
[src]

impl<T> Sync for DirectionTable<T> where
    T: Sync
[src]

impl<T> Unpin for DirectionTable<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for DirectionTable<T> where
    T: UnwindSafe
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.