[][src]Struct sounding_analysis::Layer

pub struct Layer {
    pub bottom: DataRow,
    pub top: DataRow,
}

A layer in the atmosphere described by the values at the top and bottom.

Fields

bottom: DataRow

Pressure at the bottom of the layer.

top: DataRow

Pressure at the top of the layer.

Methods

impl Layer[src]

pub fn lapse_rate(&self) -> Option<CelsiusPKm>[src]

Get the average lapse rate in C/km

pub fn height_thickness(&self) -> Option<Meters>[src]

Get the height thickness in meters

pub fn pressure_thickness(&self) -> Option<HectoPascal>[src]

Get the pressure thickness.

pub fn wind_shear(&self) -> Option<WindUV<MetersPSec>>[src]

Get the bulk wind shear (spd kts, direction degrees)

Trait Implementations

impl Clone for Layer[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Layer[src]

impl Debug for Layer[src]

Auto Trait Implementations

impl Send for Layer

impl Sync for Layer

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]