pub struct ConflictRange {
pub start_line: u32,
pub end_line: u32,
}Expand description
Zero-based, half-open line range (start_line..end_line).
Fields§
§start_line: u32§end_line: u32Implementations§
Source§impl ConflictRange
impl ConflictRange
Trait Implementations§
Source§impl Clone for ConflictRange
impl Clone for ConflictRange
Source§fn clone(&self) -> ConflictRange
fn clone(&self) -> ConflictRange
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 moreimpl Copy for ConflictRange
Source§impl Debug for ConflictRange
impl Debug for ConflictRange
Source§impl<'de> Deserialize<'de> for ConflictRange
impl<'de> Deserialize<'de> for ConflictRange
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
impl Eq for ConflictRange
Source§impl PartialEq for ConflictRange
impl PartialEq for ConflictRange
Source§impl Serialize for ConflictRange
impl Serialize for ConflictRange
impl StructuralPartialEq for ConflictRange
Auto Trait Implementations§
impl Freeze for ConflictRange
impl RefUnwindSafe for ConflictRange
impl Send for ConflictRange
impl Sync for ConflictRange
impl Unpin for ConflictRange
impl UnsafeUnpin for ConflictRange
impl UnwindSafe for ConflictRange
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