pub enum Reexport<'a> {
DLLName {
export: &'a str,
lib: &'a str,
},
DLLOrdinal {
ordinal: usize,
lib: &'a str,
},
}
Expand description
PE binaries have two kinds of reexports, either specifying the dll’s name, or the ordinal value of the dll
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Reexport<'a>
impl<'a> RefUnwindSafe for Reexport<'a>
impl<'a> Send for Reexport<'a>
impl<'a> Sync for Reexport<'a>
impl<'a> Unpin for Reexport<'a>
impl<'a> UnwindSafe for Reexport<'a>
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