Enum sir_ddft::Grid2D[][src]

pub enum Grid2D {
    Cartesian(CartesianGrid2D),
}

Types of two-dimensional grids.

Variants

Cartesian(CartesianGrid2D)

Grid made from cartesian product of 1D grids

Implementations

impl Grid2D[src]

pub fn new_cartesian(grid_x: Grid1D, grid_y: Grid1D) -> Self[src]

Shorthand for creating a cartesian grid

pub fn grid<'a>(&'a self) -> Box<dyn Iterator<Item = (f64, f64)> + 'a>[src]

Shorthand for getting an iterator for this grid

Trait Implementations

impl Clone for Grid2D[src]

Auto Trait Implementations

impl RefUnwindSafe for Grid2D

impl Send for Grid2D

impl Sync for Grid2D

impl Unpin for Grid2D

impl UnwindSafe for Grid2D

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.