pub struct DecoDepth {
pub min_fsw: u16,
pub max_fsw: u16,
pub rows: Vec<RowDeco>,
}Expand description
a depth in the air decompression table
Fields§
§min_fsw: u16the lower end of allowed depth for a specific profile in the air decompression tables expressed feet of sea water
max_fsw: u16the higher end of allowed depth for a specific profile in the air decompression tables expressed feet of sea water
rows: Vec<RowDeco>a row in a depth of the air decompression
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DecoDepth
impl<'de> Deserialize<'de> for DecoDepth
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 DecoDepth
impl RefUnwindSafe for DecoDepth
impl Send for DecoDepth
impl Sync for DecoDepth
impl Unpin for DecoDepth
impl UnsafeUnpin for DecoDepth
impl UnwindSafe for DecoDepth
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