pub struct Ref<T: RefCountable> { /* private fields */ }Implementations§
Source§impl Ref<LowLevelILFunction<Mutable, NonSSA>>
impl Ref<LowLevelILFunction<Mutable, NonSSA>>
Sourcepub fn finalized(self) -> Ref<LowLevelILFunction<Finalized, NonSSA>>
pub fn finalized(self) -> Ref<LowLevelILFunction<Finalized, NonSSA>>
Finalize the mutated LowLevelILFunction, returning a LowLevelILRegularFunction.
This function will not correct the SSA related dataflow, to do that you must call
the function LowLevelILMutableFunction::generate_ssa_form.
§Example
use binaryninja::low_level_il::LowLevelILMutableFunction;
use binaryninja::rc::Ref;
// ... modify the IL
let finalized_llil = mutable_llil.finalized();
finalized_llil.generate_ssa_form();Trait Implementations§
impl Eq for Ref<Metadata>
impl<T: RefCountable + Eq> Eq for Ref<T>
Auto Trait Implementations§
impl<T> Freeze for Ref<T>where
T: Freeze,
impl<T> RefUnwindSafe for Ref<T>where
T: RefUnwindSafe,
impl<T> Send for Ref<T>where
T: Send,
impl<T> Sync for Ref<T>where
T: Sync,
impl<T> Unpin for Ref<T>where
T: Unpin,
impl<T> UnwindSafe for Ref<T>where
T: UnwindSafe,
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