Struct object::pe::ImageLinenumber
source · [−]#[repr(C)]pub struct ImageLinenumber {
pub symbol_table_index_or_virtual_address: U32Bytes<LE>,
pub linenumber: U16Bytes<LE>,
}
Fields
symbol_table_index_or_virtual_address: U32Bytes<LE>
Symbol table index of function name if Linenumber is 0. Otherwise virtual address of line number.
linenumber: U16Bytes<LE>
Line number.
Trait Implementations
sourceimpl Clone for ImageLinenumber
impl Clone for ImageLinenumber
sourcefn clone(&self) -> ImageLinenumber
fn clone(&self) -> ImageLinenumber
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 ImageLinenumber
impl Debug for ImageLinenumber
impl Copy for ImageLinenumber
impl Pod for ImageLinenumber
Auto Trait Implementations
impl RefUnwindSafe for ImageLinenumber
impl Send for ImageLinenumber
impl Sync for ImageLinenumber
impl Unpin for ImageLinenumber
impl UnwindSafe for ImageLinenumber
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub 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