pub struct ModuleInfo {Show 15 fields
pub attribute_name_index: ConstantPoolIndex,
pub attribute_length: u32,
pub module_name_index: ConstantPoolIndex,
pub module_flags: u16,
pub module_version_index: ConstantPoolIndex,
pub requires_count: u16,
pub requires: Vec<Requires>,
pub exports_count: u16,
pub exports: Vec<Exports>,
pub opens_count: u16,
pub opens: Vec<Opens>,
pub uses_count: u16,
pub uses_index: Vec<ConstantPoolIndex>,
pub provides_count: u16,
pub provides: Vec<Provides>,
}
Fields§
§attribute_name_index: ConstantPoolIndex
§attribute_length: u32
§module_name_index: ConstantPoolIndex
§module_flags: u16
§module_version_index: ConstantPoolIndex
§requires_count: u16
§requires: Vec<Requires>
§exports_count: u16
§exports: Vec<Exports>
§opens_count: u16
§opens: Vec<Opens>
§uses_count: u16
§uses_index: Vec<ConstantPoolIndex>
§provides_count: u16
§provides: Vec<Provides>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModuleInfo
impl RefUnwindSafe for ModuleInfo
impl Send for ModuleInfo
impl Sync for ModuleInfo
impl Unpin for ModuleInfo
impl UnwindSafe for ModuleInfo
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