useserde::{Deserialize, Serialize};usesuper::BlockId;/// A character-range anchor into a block's visible text.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]#[non_exhaustive]pubstructTextAnchor{/// Identifier of the anchored block.
pubblock_id: BlockId,
/// Start character offset within the block text.
pubchar_start:usize,
/// End character offset within the block text.
pubchar_end:usize,
}