#[repr(C)]pub struct TableImport {
pub module_name: String,
pub name: String,
pub element_type: u8,
pub min: usize,
pub max: Option<usize>,
}
Fields§
§module_name: String
§name: String
§element_type: u8
§min: usize
§max: Option<usize>
Trait Implementations§
Source§impl Clone for TableImport
impl Clone for TableImport
Source§fn clone(&self) -> TableImport
fn clone(&self) -> TableImport
Returns a copy 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 TableImport
impl Debug for TableImport
Source§impl<'de> Deserialize<'de> for TableImport
impl<'de> Deserialize<'de> for TableImport
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
Source§impl PartialEq for TableImport
impl PartialEq for TableImport
Source§impl Serialize for TableImport
impl Serialize for TableImport
impl StructuralPartialEq for TableImport
Auto Trait Implementations§
impl Freeze for TableImport
impl RefUnwindSafe for TableImport
impl Send for TableImport
impl Sync for TableImport
impl Unpin for TableImport
impl UnwindSafe for TableImport
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