Struct rls_data::SpanData
[−]
[src]
pub struct SpanData {
pub file_name: PathBuf,
pub byte_start: u32,
pub byte_end: u32,
pub line_start: Row<OneIndexed>,
pub line_end: Row<OneIndexed>,
pub column_start: Column<OneIndexed>,
pub column_end: Column<OneIndexed>,
}Fields
file_name: PathBuf
byte_start: u32
byte_end: u32
line_start: Row<OneIndexed>
line_end: Row<OneIndexed>
column_start: Column<OneIndexed>
column_end: Column<OneIndexed>
Trait Implementations
impl Debug for SpanData[src]
impl Clone for SpanData[src]
fn clone(&self) -> SpanData[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Decodable for SpanData[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<SpanData, __D::Error>[src]
Deserialize a value using a Decoder.