pub struct ExportSymbol<'t> {
pub ordinal: u16,
pub flags: ExportSymbolFlags,
pub name: RawString<'t>,
}Expand description
An exported symbol.
Symbol kind S_EXPORT.
Fields§
§ordinal: u16Ordinal of the symbol.
flags: ExportSymbolFlagsFlags declaring the type of the exported symbol.
name: RawString<'t>The name of the exported symbol.
Trait Implementations§
Source§impl<'t> Clone for ExportSymbol<'t>
impl<'t> Clone for ExportSymbol<'t>
Source§fn clone(&self) -> ExportSymbol<'t>
fn clone(&self) -> ExportSymbol<'t>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'t> Debug for ExportSymbol<'t>
impl<'t> Debug for ExportSymbol<'t>
Source§impl<'t> PartialEq for ExportSymbol<'t>
impl<'t> PartialEq for ExportSymbol<'t>
Source§impl<'t> TryFromCtx<'t, u16> for ExportSymbol<'t>
impl<'t> TryFromCtx<'t, u16> for ExportSymbol<'t>
impl<'t> Copy for ExportSymbol<'t>
impl<'t> Eq for ExportSymbol<'t>
impl<'t> StructuralPartialEq for ExportSymbol<'t>
Auto Trait Implementations§
impl<'t> Freeze for ExportSymbol<'t>
impl<'t> RefUnwindSafe for ExportSymbol<'t>
impl<'t> Send for ExportSymbol<'t>
impl<'t> Sync for ExportSymbol<'t>
impl<'t> Unpin for ExportSymbol<'t>
impl<'t> UnwindSafe for ExportSymbol<'t>
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