Struct vtk_format::dataset::RectlinearGrid
source · [−]pub struct RectlinearGrid {
pub dimension: Dimension,
pub x_coodinates: Data1D,
pub y_coodinates: Data1D,
pub z_coodinates: Data1D,
}Expand description
Rectilinear Grid
A rectilinear grid defines a dataset with regular topology,
and semi-regular geometry aligned along the x-y-z coordinate axes.
The geometry is defined by three lists of monotonically increasing coordinate values,
one list for each of the x-y-z coordinate axes.
The topology is defined by specifying the grid dimensions,
which must be greater than or equal to 1.
Fields
dimension: Dimensionx_coodinates: Data1Dy_coodinates: Data1Dz_coodinates: Data1DTrait Implementations
sourceimpl Clone for RectlinearGrid
impl Clone for RectlinearGrid
sourcefn clone(&self) -> RectlinearGrid
fn clone(&self) -> RectlinearGrid
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RectlinearGrid
impl Debug for RectlinearGrid
sourceimpl PartialEq<RectlinearGrid> for RectlinearGrid
impl PartialEq<RectlinearGrid> for RectlinearGrid
sourcefn eq(&self, other: &RectlinearGrid) -> bool
fn eq(&self, other: &RectlinearGrid) -> bool
sourceimpl PartialOrd<RectlinearGrid> for RectlinearGrid
impl PartialOrd<RectlinearGrid> for RectlinearGrid
sourcefn partial_cmp(&self, other: &RectlinearGrid) -> Option<Ordering>
fn partial_cmp(&self, other: &RectlinearGrid) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl StructuralPartialEq for RectlinearGrid
Auto Trait Implementations
impl RefUnwindSafe for RectlinearGrid
impl Send for RectlinearGrid
impl Sync for RectlinearGrid
impl Unpin for RectlinearGrid
impl UnwindSafe for RectlinearGrid
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more