pub struct DebugLocation {
pub line: u32,
pub column: u32,
}Expand description
Public API for DebugLocation.
Fields§
§line: u32Public API for line.
column: u32Public API for column.
Trait Implementations§
Source§impl Clone for DebugLocation
impl Clone for DebugLocation
Source§fn clone(&self) -> DebugLocation
fn clone(&self) -> DebugLocation
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 DebugLocation
impl Debug for DebugLocation
Source§impl PartialEq for DebugLocation
impl PartialEq for DebugLocation
Source§fn eq(&self, other: &DebugLocation) -> bool
fn eq(&self, other: &DebugLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DebugLocation
impl Eq for DebugLocation
impl StructuralPartialEq for DebugLocation
Auto Trait Implementations§
impl Freeze for DebugLocation
impl RefUnwindSafe for DebugLocation
impl Send for DebugLocation
impl Sync for DebugLocation
impl Unpin for DebugLocation
impl UnsafeUnpin for DebugLocation
impl UnwindSafe for DebugLocation
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