pub struct GoDisassCollector;Trait Implementations§
Source§impl OnDemandCollector for GoDisassCollector
impl OnDemandCollector for GoDisassCollector
Source§fn supports(&self, class: TargetClass) -> bool
fn supports(&self, class: TargetClass) -> bool
Does this collector handle the given target class?
Source§fn collect(
&self,
ctx: &CollectCtx<'_>,
_live: Option<&dyn LiveDebugger>,
) -> Result<DisasmOutput>
fn collect( &self, ctx: &CollectCtx<'_>, _live: Option<&dyn LiveDebugger>, ) -> Result<DisasmOutput>
Collect disassembly (or equivalent) for
ctx.symbol.Auto Trait Implementations§
impl Freeze for GoDisassCollector
impl RefUnwindSafe for GoDisassCollector
impl Send for GoDisassCollector
impl Sync for GoDisassCollector
impl Unpin for GoDisassCollector
impl UnsafeUnpin for GoDisassCollector
impl UnwindSafe for GoDisassCollector
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more