#[repr(C)]pub struct Line {
pub function_id: Record<u64, 1, OPT_ZERO>,
pub lineno: Record<i64, 2, OPT_ZERO>,
}Expand description
Represents function and line number information. Omits column.
Fields§
§function_id: Record<u64, 1, OPT_ZERO>The id of the corresponding profile.Function for this line.
lineno: Record<i64, 2, OPT_ZERO>Line number in source code.
Trait Implementations§
Source§impl Value for Line
§Safety
The Default implementation will return all zero-representations.
impl Value for Line
§Safety
The Default implementation will return all zero-representations.
impl Copy for Line
impl Eq for Line
impl StructuralPartialEq for Line
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnsafeUnpin for Line
impl UnwindSafe for Line
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