Struct vtk_format::dataset::StructuredPoints
source · [−]pub struct StructuredPoints {
pub dimension: Dimension,
pub origin: [f64; 3],
pub spacing: [f64; 3],
}Expand description
Structured Points
The file format supports 1D, 2D, and 3D structured point datasets.
The dimensions nx, ny, nz must be greater than or equal to 1.
The data spacing sx, sy, sz must be greater than 0.
Fields
dimension: Dimensionorigin: [f64; 3]spacing: [f64; 3]Trait Implementations
sourceimpl Clone for StructuredPoints
impl Clone for StructuredPoints
sourcefn clone(&self) -> StructuredPoints
fn clone(&self) -> StructuredPoints
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 StructuredPoints
impl Debug for StructuredPoints
sourceimpl PartialEq<StructuredPoints> for StructuredPoints
impl PartialEq<StructuredPoints> for StructuredPoints
sourcefn eq(&self, other: &StructuredPoints) -> bool
fn eq(&self, other: &StructuredPoints) -> bool
sourceimpl PartialOrd<StructuredPoints> for StructuredPoints
impl PartialOrd<StructuredPoints> for StructuredPoints
sourcefn partial_cmp(&self, other: &StructuredPoints) -> Option<Ordering>
fn partial_cmp(&self, other: &StructuredPoints) -> 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 StructuredPoints
Auto Trait Implementations
impl RefUnwindSafe for StructuredPoints
impl Send for StructuredPoints
impl Sync for StructuredPoints
impl Unpin for StructuredPoints
impl UnwindSafe for StructuredPoints
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