Struct object::pe::ImageAuxSymbolWeak
source · [−]#[repr(C)]pub struct ImageAuxSymbolWeak {
pub weak_default_sym_index: U32Bytes<LE>,
pub weak_search_type: U32Bytes<LE>,
}
Expand description
Auxiliary symbol format 3: weak externals.
Used for both ImageSymbol
and ImageSymbolEx
(both with padding).
Fields
weak_default_sym_index: U32Bytes<LE>
the weak extern default symbol index
weak_search_type: U32Bytes<LE>
Trait Implementations
sourceimpl Clone for ImageAuxSymbolWeak
impl Clone for ImageAuxSymbolWeak
sourcefn clone(&self) -> ImageAuxSymbolWeak
fn clone(&self) -> ImageAuxSymbolWeak
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 ImageAuxSymbolWeak
impl Debug for ImageAuxSymbolWeak
impl Copy for ImageAuxSymbolWeak
impl Pod for ImageAuxSymbolWeak
Auto Trait Implementations
impl RefUnwindSafe for ImageAuxSymbolWeak
impl Send for ImageAuxSymbolWeak
impl Sync for ImageAuxSymbolWeak
impl Unpin for ImageAuxSymbolWeak
impl UnwindSafe for ImageAuxSymbolWeak
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