// Derived from PDFium's cpvt_lineinfo.h
// Original: Copyright 2014 The PDFium Authors
// Licensed under BSD-3-Clause / Apache-2.0
// See pdfium-upstream/LICENSE for the original license.
//! Line info — line statistics for the iterator API (`CPVT_LineInfo`).
//!
//! Distinct from `Line` (which holds layout-engine internal state).
//! `LineInfo` is the view exposed to callers iterating over laid-out lines.
//!
//! In rpdfium this is consolidated into `Line`; this type is provided for
//! upstream 1:1 file mapping.
/// Line statistics exposed to callers of the variable text iterator.
///
/// Corresponds to upstream `CPVT_LineInfo`. In rpdfium, the same
/// information is carried in [`super::vt_line::Line`].