// Derived from PDFium's cpvt_word.h
// Original: Copyright 2014 The PDFium Authors
// Licensed under BSD-3-Clause / Apache-2.0
// See pdfium-upstream/LICENSE for the original license.
//! Word — iterator-level character record (`CPVT_Word`).
//!
//! Distinct from `WordInfo` (layout-engine internal). `Word` is the view
//! exposed to callers iterating over laid-out characters.
//!
//! In rpdfium this overlaps with `WordInfo`; this type is provided for
//! upstream 1:1 file mapping.
/// A single word (character) at the iterator level.
///
/// Corresponds to upstream `CPVT_Word`. In rpdfium the same data is
/// carried in [`super::vt_word_info::WordInfo`].