pub struct SBLineEntry {
pub raw: SBLineEntryRef,
}Expand description
Specifies an association with a contiguous range of instructions and a source file location.
Fields§
§raw: SBLineEntryRefThe underlying raw SBLineEntryRef.
Implementations§
Source§impl SBLineEntry
impl SBLineEntry
Sourcepub fn start_address(&self) -> SBAddress
pub fn start_address(&self) -> SBAddress
The start address for this line entry.
Sourcepub fn end_address(&self) -> SBAddress
pub fn end_address(&self) -> SBAddress
The end address for this line entry.
Sourcepub fn filespec(&self) -> SBFileSpec
pub fn filespec(&self) -> SBFileSpec
The file SBFileSpec for this line entry.
Trait Implementations§
Source§impl Clone for SBLineEntry
impl Clone for SBLineEntry
Source§fn clone(&self) -> SBLineEntry
fn clone(&self) -> SBLineEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SBLineEntry
impl Debug for SBLineEntry
Source§impl Drop for SBLineEntry
impl Drop for SBLineEntry
impl Send for SBLineEntry
impl Sync for SBLineEntry
Auto Trait Implementations§
impl Freeze for SBLineEntry
impl RefUnwindSafe for SBLineEntry
impl Unpin for SBLineEntry
impl UnwindSafe for SBLineEntry
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