Enum sir_ddft::Grid1D[][src]

pub enum Grid1D {
    Equidistant(EquidistantGrid1D),
}

Types of one-dimensional grids.

For now we only support equidistant grids but this might change in future.

Variants

Equidistant(EquidistantGrid1D)

Equidistant gridpoints

Implementations

impl Grid1D[src]

pub fn new_equidistant(xlim: (f64, f64), n: usize) -> Self[src]

Shorthand to create a new equidistant grid

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

Shorthand for getting an iterator for this grid

Trait Implementations

impl Clone for Grid1D[src]

Auto Trait Implementations

impl RefUnwindSafe for Grid1D

impl Send for Grid1D

impl Sync for Grid1D

impl Unpin for Grid1D

impl UnwindSafe for Grid1D

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.