pub struct SSA;Trait Implementations§
Source§impl<'func, M> ExpressionHandler<'func, M, SSA> for LowLevelILExpression<'func, M, SSA, ValueExpr>where
M: FunctionMutability,
impl<'func, M> ExpressionHandler<'func, M, SSA> for LowLevelILExpression<'func, M, SSA, ValueExpr>where
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, M, SSA>
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
Source§impl<'func, M> InstructionHandler<'func, M, SSA> for LowLevelILInstruction<'func, M, SSA>where
M: FunctionMutability,
impl<'func, M> InstructionHandler<'func, M, SSA> for LowLevelILInstruction<'func, M, SSA>where
M: FunctionMutability,
fn kind(&self) -> LowLevelILInstructionKind<'func, M, SSA>
Source§fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
Visit the sub expressions of this instruction. Read more
impl Copy for SSA
impl FunctionForm for SSA
Auto Trait Implementations§
impl Freeze for SSA
impl RefUnwindSafe for SSA
impl Send for SSA
impl Sync for SSA
impl Unpin for SSA
impl UnwindSafe for SSA
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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