html_parser_rscx 0.7.1

A simple and general purpose html/xhtml parser
Documentation
use serde::{Serialize};

/// Span of the information in the parsed source.
#[derive(Debug, Default, Clone, Serialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct SourceSpan {
    pub text: String,
    pub start_line: usize,
    pub end_line: usize,
    pub start_column: usize,
    pub end_column: usize,
}

impl SourceSpan {
    pub fn new(
        text: String,
        start_line: usize,
        end_line: usize,
        start_column: usize,
        end_column: usize,
    ) -> Self {
        Self {
            text,
            start_line,
            end_line,
            start_column,
            end_column,
        }
    }
}