use serde::{Deserialize, Serialize};
use super::range::Range;
/// A block of plain text content.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Text {
/// The raw string content of the text block.
pub content: String,
/// The location of the text block in the source document.
pub range: Range,
}