text.rs 253 B

1234567891011
  1. use crate::ElementId;
  2. use std::cell::Cell;
  3. /// A bump-allocated string slice and metadata.
  4. pub struct VText<'src> {
  5. /// The [`ElementId`] of the VText.
  6. pub id: Cell<Option<ElementId>>,
  7. /// The text of the VText.
  8. pub text: &'src str,
  9. }