[][src]Struct vec2dim::WrappingVec2d

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

Adds methods to access elements through wrapping indices, such as [0][-1] for the last element in the first row.

Methods

impl<T> WrappingVec2d<T>[src]

pub fn mut_array(&mut self) -> &mut Vec2d<T>[src]

pub fn array(&self) -> &Vec2d<T>[src]

pub fn count_cols(&self) -> isize[src]

pub fn count_rows(&self) -> isize[src]

pub fn get_col_index(&self, col: isize) -> usize[src]

pub fn get_row_index(&self, row: isize) -> usize[src]

pub fn index<'a>(&'a self, row: isize, col: isize) -> &'a T[src]

pub fn index_mut<'a>(&'a mut self, row: isize, col: isize) -> &'a mut T[src]

impl<T: Copy> WrappingVec2d<T>[src]

pub fn from(width: usize, data: &[T]) -> WrappingVec2d<T>[src]

pub fn from_vec2d(data: Vec2d<T>) -> WrappingVec2d<T>[src]

Auto Trait Implementations

impl<T> Send for WrappingVec2d<T> where
    T: Send

impl<T> Unpin for WrappingVec2d<T> where
    T: Unpin

impl<T> Sync for WrappingVec2d<T> where
    T: Sync

impl<T> UnwindSafe for WrappingVec2d<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for WrappingVec2d<T> where
    T: RefUnwindSafe

Blanket Implementations

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.

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

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

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