pub struct CodeSection {
pub name: String,
pub start_address: u64,
pub end_address: u64,
pub size: u64,
pub permissions: String,
pub section_type: CodeSectionType,
}Fields§
§name: String§start_address: u64§end_address: u64§size: u64§permissions: String§section_type: CodeSectionTypeTrait Implementations§
Source§impl Clone for CodeSection
impl Clone for CodeSection
Source§fn clone(&self) -> CodeSection
fn clone(&self) -> CodeSection
Returns a duplicate 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 CodeSection
impl Debug for CodeSection
Source§impl<'de> Deserialize<'de> for CodeSection
impl<'de> Deserialize<'de> for CodeSection
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 CodeSection
impl RefUnwindSafe for CodeSection
impl Send for CodeSection
impl Sync for CodeSection
impl Unpin for CodeSection
impl UnwindSafe for CodeSection
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