Struct GridData

Source
pub struct GridData {
    pub name: String,
    pub data: Vec<f64>,
    pub extent: Extent,
    pub size: f64,
    pub min: f64,
    pub max: f64,
}
Expand description

Gridded data object to read from

Fields§

§name: String

The name of the gridded data

§data: Vec<f64>

The grid data

§extent: Extent

The extent for remapping the data with a value between 0 and extent

§size: f64

The size of the tile (width and height)

§min: f64

The minimum grid value

§max: f64

The maximum grid value

Implementations§

Source§

impl GridData

Source

pub fn new( name: String, extent: Extent, size: f64, min: f64, max: f64, data: Vec<f64>, ) -> Self

create a new GridData object

Trait Implementations§

Source§

impl Debug for GridData

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GridData

Source§

fn default() -> GridData

Returns the “default value” for a type. Read more
Source§

impl PartialEq for GridData

Source§

fn eq(&self, other: &GridData) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl ProtoRead for GridData

Source§

fn read(&mut self, tag: u64, pb: &mut Protobuf)

The read method is used to read a field from a protobuf message. The tag parameter is used to determine which field to read into the struct. The pbf parameter is used to read the data in the appropriate format. Read more
Source§

impl ProtoWrite for GridData

Source§

fn write(&self, pb: &mut Protobuf)

The write method is used to write a field to a protobuf message. The pbf parameter is used to write the data in the appropriate format. Read more
Source§

impl StructuralPartialEq for GridData

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.