pub struct LineTableEntry {
pub line_code_index: u64,
pub line_number: i32,
}Expand description
Line table entry - maps source line to bytecode index
Fields§
§line_code_index: u64§line_number: i32Trait Implementations§
Source§impl Clone for LineTableEntry
impl Clone for LineTableEntry
Source§fn clone(&self) -> LineTableEntry
fn clone(&self) -> LineTableEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LineTableEntry
impl Debug for LineTableEntry
Source§impl<'de> Deserialize<'de> for LineTableEntry
impl<'de> Deserialize<'de> for LineTableEntry
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 LineTableEntry
impl RefUnwindSafe for LineTableEntry
impl Send for LineTableEntry
impl Sync for LineTableEntry
impl Unpin for LineTableEntry
impl UnsafeUnpin for LineTableEntry
impl UnwindSafe for LineTableEntry
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