Struct ImageSymbolEx

struct ImageSymbolEx { ... }

Fields

name: [u8; 8]

If first 4 bytes are 0, then second 4 bytes are offset into string table.

value: crate::endian::U32Bytes<crate::endian::LittleEndian>
section_number: crate::endian::I32Bytes<crate::endian::LittleEndian>
typ: crate::endian::U16Bytes<crate::endian::LittleEndian>
storage_class: u8
number_of_aux_symbols: u8

Implementations

impl Clone for ImageSymbolEx

fn clone(self: &Self) -> ImageSymbolEx

impl Copy for ImageSymbolEx

impl Debug for ImageSymbolEx

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl Freeze for ImageSymbolEx

impl ImageSymbol for pe::ImageSymbolEx

fn raw_name(self: &Self) -> &[u8; 8]
fn value(self: &Self) -> u32
fn section_number(self: &Self) -> i32
fn typ(self: &Self) -> u16
fn storage_class(self: &Self) -> u8
fn number_of_aux_symbols(self: &Self) -> u8

impl Pod for ImageSymbolEx

impl RefUnwindSafe for ImageSymbolEx

impl Send for ImageSymbolEx

impl Sync for ImageSymbolEx

impl Unpin for ImageSymbolEx

impl UnwindSafe for ImageSymbolEx

impl<T> Any for ImageSymbolEx

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ImageSymbolEx

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for ImageSymbolEx

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for ImageSymbolEx

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for ImageSymbolEx

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for ImageSymbolEx

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for ImageSymbolEx

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for ImageSymbolEx

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for ImageSymbolEx

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>