pub struct Module {
pub id: ModuleId,
pub name: String,
pub path: Option<String>,
pub is_optimized: Option<bool>,
pub is_user_code: Option<bool>,
pub version: Option<String>,
pub symbol_status: Option<String>,
pub symbol_file_path: Option<String>,
pub date_time_stamp: Option<String>,
pub address_range: Option<String>,
}Fields§
§id: ModuleIdUnique identifier for the module.
name: StringA name of the module.
path: Option<String>Logical full path to the module. The exact definition is implementation defined, but usually this would be a full path to the on-disk file for the module.
is_optimized: Option<bool>True if the module is optimized.
is_user_code: Option<bool>True if the module is considered ‘user code’ by a debugger that supports ‘Just My Code’.
version: Option<String>Version of Module.
symbol_status: Option<String>User-understandable description of if symbols were found for the module (ex: ‘Symbols Loaded’, ‘Symbols not found’, etc.)
symbol_file_path: Option<String>Logical full path to the symbol file. The exact definition is implementation defined.
date_time_stamp: Option<String>Module created or modified, encoded as a RFC 3339 timestamp.
address_range: Option<String>Address range covered by this 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 UnsafeUnpin 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