[][src]Struct grid_trait::grid3::backends::inline3x3x3::Inline3x3x3Grid

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

Methods

impl<T> Inline3x3x3Grid<T>[src]

pub fn new<I, F>(startval: F) -> Self where
    I: From<Vector3<i32>>,
    F: FnMut(I) -> T, 
[src]

pub fn broadcast(startval: T) -> Self where
    T: Clone
[src]

Trait Implementations

impl<T> From<[[[T; 3]; 3]; 3]> for Inline3x3x3Grid<T>[src]

impl<T> Grid3 for Inline3x3x3Grid<T>[src]

type Item = T

type XBound = Range0To

type YBound = Range0To

type ZBound = Range0To

impl<T: Clone> Grid3Get for Inline3x3x3Grid<T>[src]

impl<T> Grid3Len for Inline3x3x3Grid<T>[src]

impl<T> Grid3Mut for Inline3x3x3Grid<T>[src]

impl<T> Grid3Ref for Inline3x3x3Grid<T>[src]

impl<T> Grid3Set for Inline3x3x3Grid<T>[src]

Auto Trait Implementations

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

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

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

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

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

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> Grid3 for T where
    T: Deref,
    <T as Deref>::Target: Grid3
[src]

type Item = <<T as Deref>::Target as Grid3>::Item

type XBound = <<T as Deref>::Target as Grid3>::XBound

type YBound = <<T as Deref>::Target as Grid3>::YBound

type ZBound = <<T as Deref>::Target as Grid3>::ZBound

impl<T> Grid3Get for T where
    T: Deref,
    <T as Deref>::Target: Grid3Get
[src]

impl<T> Grid3Len for T where
    T: Deref,
    <T as Deref>::Target: Grid3Len
[src]

impl<T> Grid3Mut for T where
    T: Deref + DerefMut,
    <T as Deref>::Target: Grid3Mut
[src]

impl<T> Grid3Ref for T where
    T: Deref,
    <T as Deref>::Target: Grid3Ref
[src]

impl<T> Grid3Set for T where
    T: Deref + DerefMut,
    <T as Deref>::Target: Grid3Set
[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.