pub struct EditorPoint {
pub path: String,
pub line: usize,
pub col: usize,
}Fields§
§path: String§line: usize§col: usizeTrait Implementations§
Source§impl Clone for EditorPoint
impl Clone for EditorPoint
Source§fn clone(&self) -> EditorPoint
fn clone(&self) -> EditorPoint
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 moreAuto Trait Implementations§
impl Freeze for EditorPoint
impl RefUnwindSafe for EditorPoint
impl Send for EditorPoint
impl Sync for EditorPoint
impl Unpin for EditorPoint
impl UnsafeUnpin for EditorPoint
impl UnwindSafe for EditorPoint
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