Struct binaryninja::linearview::LinearViewCursor
[−]pub struct LinearViewCursor { /* private fields */ }
Implementations
impl LinearViewCursor
impl LinearViewCursor
pub fn new(root: &LinearViewObject) -> Ref<Self>
pub fn current_object(&self) -> Ref<LinearViewObject>
pub fn current_object(&self) -> Ref<LinearViewObject>
Gets the current LinearViewObject associated with this cursor.
pub fn duplicate(&self) -> Ref<Self>
pub fn before_begin(&self) -> bool
pub fn after_end(&self) -> bool
pub fn valid(&self) -> bool
pub fn seek_to_start(&self)
pub fn seek_to_end(&self)
pub fn seek_to_address(&self, address: u64)
pub fn ordering_index(&self) -> Range<u64>
pub fn ordering_index_total(&self) -> u64
pub fn seek_to_ordering_index(&self, idx: u64)
pub fn previous(&self) -> bool
pub fn next(&self) -> bool
pub fn lines(&self) -> Array<LinearDisassemblyLine>
Trait Implementations
impl Ord for LinearViewCursor
impl Ord for LinearViewCursor
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
impl PartialEq<LinearViewCursor> for LinearViewCursor
impl PartialEq<LinearViewCursor> for LinearViewCursor
impl PartialOrd<LinearViewCursor> for LinearViewCursor
impl PartialOrd<LinearViewCursor> for LinearViewCursor
impl RefCountable for LinearViewCursor
impl RefCountable for LinearViewCursor
impl ToOwned for LinearViewCursor
impl ToOwned for LinearViewCursor
type Owned = Ref<LinearViewCursor>
type Owned = Ref<LinearViewCursor>
The resulting type after obtaining ownership.
fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · sourcefn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
impl Eq for LinearViewCursor
impl Send for LinearViewCursor
impl StructuralEq for LinearViewCursor
impl Sync for LinearViewCursor
Auto Trait Implementations
impl RefUnwindSafe for LinearViewCursor
impl Unpin for LinearViewCursor
impl UnwindSafe for LinearViewCursor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more