Struct idalib_sys::func::func_t
#[repr(C, align(8))]pub struct func_t { /* private fields */ }
Expand description
A function is a set of continuous ranges of addresses with characteristics
Implementations§
§impl func_t
impl func_t
pub unsafe fn does_return(&self) -> bool
pub unsafe fn does_return(&self) -> bool
Does function return?
§impl func_t
impl func_t
pub unsafe fn analyzed_sp(&self) -> bool
pub unsafe fn analyzed_sp(&self) -> bool
Has SP-analysis been performed?
§impl func_t
impl func_t
pub unsafe fn need_prolog_analysis(&self) -> bool
pub unsafe fn need_prolog_analysis(&self) -> bool
Needs prolog analysis?
Trait Implementations§
§impl ExternType for func_t
impl ExternType for func_t
§impl MakeCppStorage for func_t
impl MakeCppStorage for func_t
§unsafe fn allocate_uninitialized_cpp_storage() -> *mut func_t
unsafe fn allocate_uninitialized_cpp_storage() -> *mut func_t
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
§unsafe fn free_uninitialized_cpp_storage(arg0: *mut func_t)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut func_t)
Frees a C++ allocation which has not yet
had a constructor called. Read more
impl UniquePtrTarget for func_t
impl VectorElement for func_t
impl WeakPtrTarget for func_t
Auto Trait Implementations§
impl !Freeze for func_t
impl !RefUnwindSafe for func_t
impl !Send for func_t
impl !Sync for func_t
impl !Unpin for func_t
impl UnwindSafe for func_t
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