pub enum SymbolDecompState<'sect> {
Decomped(&'sect Symbol),
Undecomped(&'sect Symbol),
}Variants§
Decomped(&'sect Symbol)
The symbol has been decompiled. In other words it is being handled by a compiler instead of assembled from automatic disassemblies.
Undecomped(&'sect Symbol)
The symbol haven’t been decompiled yet. This was built from an automatic disassembly.
Auto Trait Implementations§
impl<'sect> Freeze for SymbolDecompState<'sect>
impl<'sect> RefUnwindSafe for SymbolDecompState<'sect>
impl<'sect> Send for SymbolDecompState<'sect>
impl<'sect> Sync for SymbolDecompState<'sect>
impl<'sect> Unpin for SymbolDecompState<'sect>
impl<'sect> UnwindSafe for SymbolDecompState<'sect>
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