Struct object::pe::ImageSymbolEx
source · [−]#[repr(C)]pub struct ImageSymbolEx {
pub name: [u8; 8],
pub value: U32Bytes<LE>,
pub section_number: U32Bytes<LE>,
pub typ: U16Bytes<LE>,
pub storage_class: u8,
pub number_of_aux_symbols: u8,
}
Fields
name: [u8; 8]
If first 4 bytes are 0, then second 4 bytes are offset into string table.
value: U32Bytes<LE>
section_number: U32Bytes<LE>
typ: U16Bytes<LE>
storage_class: u8
number_of_aux_symbols: u8
Implementations
sourceimpl ImageSymbolEx
impl ImageSymbolEx
Trait Implementations
sourceimpl Clone for ImageSymbolEx
impl Clone for ImageSymbolEx
sourcefn clone(&self) -> ImageSymbolEx
fn clone(&self) -> ImageSymbolEx
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImageSymbolEx
impl Debug for ImageSymbolEx
impl Copy for ImageSymbolEx
impl Pod for ImageSymbolEx
Auto Trait Implementations
impl RefUnwindSafe for ImageSymbolEx
impl Send for ImageSymbolEx
impl Sync for ImageSymbolEx
impl Unpin for ImageSymbolEx
impl UnwindSafe for ImageSymbolEx
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more