pub struct LineTable {
pub start: u64,
pub end: u64,
pub lines: Vec<LineTableEntry>,
}Expand description
Complete line table for a method
Fields§
§start: u64§end: u64§lines: Vec<LineTableEntry>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LineTable
impl<'de> Deserialize<'de> for LineTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LineTable
impl RefUnwindSafe for LineTable
impl Send for LineTable
impl Sync for LineTable
impl Unpin for LineTable
impl UnsafeUnpin for LineTable
impl UnwindSafe for LineTable
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