pub struct TableRnt {
pub table_code: String,
pub table_name: String,
pub table_note_9981: String,
pub table_data: Vec<RowRnt>,
}Expand description
the table for residual nitrogen time
Fields§
§table_code: Stringrepresents a unique id for a table within the diving-decompression project.
table_name: Stringoficially recognized name for a table beyond the diving-decompression project.
table_note_9981: Stringa note displayed when the rnt exceeds the no decompression limit and the profile has an unlimited no decompression limit in the no decompression table for shallower depths as per the US Navy dive manual
table_data: Vec<RowRnt>a row in the table for residual nitrogen time
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableRnt
impl<'de> Deserialize<'de> for TableRnt
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 TableRnt
impl RefUnwindSafe for TableRnt
impl Send for TableRnt
impl Sync for TableRnt
impl Unpin for TableRnt
impl UnsafeUnpin for TableRnt
impl UnwindSafe for TableRnt
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