pub struct TableAirDeco {
pub table_code: String,
pub table_name: String,
pub table_data: Vec<DecoDepth>,
}Expand description
the air decompression table
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_data: Vec<DecoDepth>table data
Trait Implementations§
Source§impl Clone for TableAirDeco
impl Clone for TableAirDeco
Source§fn clone(&self) -> TableAirDeco
fn clone(&self) -> TableAirDeco
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TableAirDeco
impl Debug for TableAirDeco
Source§impl<'de> Deserialize<'de> for TableAirDeco
impl<'de> Deserialize<'de> for TableAirDeco
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 TableAirDeco
impl RefUnwindSafe for TableAirDeco
impl Send for TableAirDeco
impl Sync for TableAirDeco
impl Unpin for TableAirDeco
impl UnsafeUnpin for TableAirDeco
impl UnwindSafe for TableAirDeco
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