pub struct Module {
pub id: u32,
pub name: String,
pub path: String,
pub is_optimized: bool,
pub is_user_code: bool,
pub version: String,
}
Expand description
An identifier for a module.
Fields§
§id: u32
The module’s identifier.
name: String
The module’s name.
path: String
The module’s path.
is_optimized: bool
True if the module is optimized.
is_user_code: bool
True if the module is considered ‘user code’ by a debugger that supports ‘Just My Code’.
version: String
Version of Module.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Module
impl<'de> Deserialize<'de> for Module
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 Module
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnwindSafe for Module
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