[][src]Struct diving_decompression::tables::RowDeco

pub struct RowDeco {
    pub min_time: u16,
    pub max_time: u16,
    pub air_tat: String,
    pub o2_tat: String,
    pub ttfs: String,
    pub o2cp: f32,
    pub repetgroup_letter: String,
    pub surdo2_recommended: bool,
    pub exceptional_exposure: bool,
    pub surdo2_required: bool,
    pub strict_surdo2: bool,
    pub air_deco_stops: Vec<DecoStops>,
    pub o2_deco_stops: Vec<DecoStops>,
}

a row in a depth of the air decompression

Fields

min_time: u16

the lower end of allowed times for a specific row expressed in minutes

max_time: u16

the higher end of allowed times for a specific row expressed in minutes

air_tat: String

total ascent time when using the Air based decompression protocol expressed in minutes

o2_tat: String

total ascent time when using in water decompression with Oxygen expressed in minutes

ttfs: String

the time from leave bottom to the first scheduled decompression stop

o2cp: f32

number of chamber periods when using the SurdO2 (surface decompression with oxygen)

repetgroup_letter: String

repetitive dive group letter after the decompression protocol

surdo2_recommended: bool

SurdO2 is recommended due to the extent of the decompression profile

exceptional_exposure: bool

exceptional exposure dives are considered an anti-pattern and should only occur in extreme situations. planning a dive with exceptional exposure is an anti-pattern and a tremendous risk for divers health

surdo2_required: bool

surdO2 is required due to the extent of the decompression profile

strict_surdo2: bool

the dive must use the SurdO2 protocol. planning these dives with for in water decompression is an anti-pattern and must be avoided

air_deco_stops: Vec<DecoStops>

an air decompression stop

o2_deco_stops: Vec<DecoStops>

an o2 decompression stop

Trait Implementations

impl Clone for RowDeco[src]

impl Debug for RowDeco[src]

impl<'de> Deserialize<'de> for RowDeco[src]

impl Serialize for RowDeco[src]

Auto Trait Implementations

impl RefUnwindSafe for RowDeco

impl Send for RowDeco

impl Sync for RowDeco

impl Unpin for RowDeco

impl UnwindSafe for RowDeco

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.