pub struct RowNdl {
pub min_fsw: u16,
pub max_fsw: u16,
pub unlimited: bool,
pub no_stop_limit: u16,
pub values: Vec<Group>,
}Expand description
row in the air No Decompression table
Fields§
§min_fsw: u16the lower end of allowed depths for a specific row expressed in Feet of sea water
max_fsw: u16the higher end of allowed depths for a specific row expressed in Feet of sea water
unlimited: boolthe row has unlimited no-decompression limit? (usually no deeper than 30 Feet of sea water)
no_stop_limit: u16the no decompression limit expressed in minutes
values: Vec<Group>a specific item in one of the rows of the US Navy air no-decompression table
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowNdl
impl<'de> Deserialize<'de> for RowNdl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RowNdl
impl RefUnwindSafe for RowNdl
impl Send for RowNdl
impl Sync for RowNdl
impl Unpin for RowNdl
impl UnsafeUnpin for RowNdl
impl UnwindSafe for RowNdl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more