pub enum Export<'a> {
Symbol(&'a u32),
Forward(&'a CStr),
}Expand description
Exported symbol.
Variants§
Symbol(&'a u32)
Standard exported symbol.
Forward(&'a CStr)
This export is forwarded to another dll.
Format of the string is "DllName.ExportName".
For more information see this blog post by Raymond Chen.
Implementations§
Trait Implementations§
impl<'a> Copy for Export<'a>
impl<'a> Eq for Export<'a>
impl<'a> StructuralPartialEq for Export<'a>
Auto Trait Implementations§
impl<'a> Freeze for Export<'a>
impl<'a> RefUnwindSafe for Export<'a>
impl<'a> Send for Export<'a>
impl<'a> Sync for Export<'a>
impl<'a> Unpin for Export<'a>
impl<'a> UnwindSafe for Export<'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