pub struct TableNdl {
pub table_code: String,
pub table_name: String,
pub table_data: Vec<RowNdl>,
}Expand description
This is the main type for the entire US NAVY air No decompression table
Fields§
§table_code: Stringunique id for a table within the diving-decompression project.
table_name: Stringoficially recognized name for a table.
table_data: Vec<RowNdl>table data
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableNdl
impl<'de> Deserialize<'de> for TableNdl
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 TableNdl
impl RefUnwindSafe for TableNdl
impl Send for TableNdl
impl Sync for TableNdl
impl Unpin for TableNdl
impl UnsafeUnpin for TableNdl
impl UnwindSafe for TableNdl
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