pub struct Module {
pub base_address: Option<String>,
pub file: Option<File>,
pub function_name: Option<String>,
pub load_type: Option<String>,
pub load_type_id: ModuleLoadTypeId,
pub start_address: Option<String>,
pub type_: Option<String>,
}
Expand description
Module
JSON schema
{
"type": "object",
"required": [
"load_type_id"
],
"properties": {
"base_address": {
"type": "string"
},
"file": {
"$ref": "#/$defs/file"
},
"function_name": {
"type": "string"
},
"load_type": {
"type": "string"
},
"load_type_id": {
"type": "integer",
"enum": [
3,
0,
1,
2,
99,
4,
5
]
},
"start_address": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
Fields§
§base_address: Option<String>
§file: Option<File>
§function_name: Option<String>
§load_type: Option<String>
§load_type_id: ModuleLoadTypeId
§start_address: Option<String>
§type_: Option<String>
Implementations§
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