pub struct LineInfo {
pub number: u32,
pub y: String,
pub height: String,
}Expand description
Line-level precision for legal documents.
Optional - only needed for legal/court documents where line numbers are referenced (e.g., “page 7, line 23”).
Fields§
§number: u32Line number (1-indexed within the block).
y: StringY position of this line.
height: StringHeight of this line.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LineInfo
impl<'de> Deserialize<'de> for LineInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LineInfo
Auto Trait Implementations§
impl Freeze for LineInfo
impl RefUnwindSafe for LineInfo
impl Send for LineInfo
impl Sync for LineInfo
impl Unpin for LineInfo
impl UnsafeUnpin for LineInfo
impl UnwindSafe for LineInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more