pub struct TrampolineSymbol {
pub tramp_type: TrampolineType,
pub size: u16,
pub thunk: PdbInternalSectionOffset,
pub target: PdbInternalSectionOffset,
}Expand description
Trampoline thunk.
Symbol kind S_TRAMPOLINE.
Fields§
§tramp_type: TrampolineTypeTrampoline symbol subtype.
size: u16Code size of the thunk.
thunk: PdbInternalSectionOffsetCode offset of the thunk.
target: PdbInternalSectionOffsetCode offset of the thunk target.
Trait Implementations§
Source§impl Clone for TrampolineSymbol
impl Clone for TrampolineSymbol
Source§fn clone(&self) -> TrampolineSymbol
fn clone(&self) -> TrampolineSymbol
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 Debug for TrampolineSymbol
impl Debug for TrampolineSymbol
Source§impl PartialEq for TrampolineSymbol
impl PartialEq for TrampolineSymbol
Source§impl TryFromCtx<'_, u16> for TrampolineSymbol
impl TryFromCtx<'_, u16> for TrampolineSymbol
impl Copy for TrampolineSymbol
impl Eq for TrampolineSymbol
impl StructuralPartialEq for TrampolineSymbol
Auto Trait Implementations§
impl Freeze for TrampolineSymbol
impl RefUnwindSafe for TrampolineSymbol
impl Send for TrampolineSymbol
impl Sync for TrampolineSymbol
impl Unpin for TrampolineSymbol
impl UnwindSafe for TrampolineSymbol
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