pub struct FieldItem {
pub marker: Option<String>,
pub key: Option<String>,
pub value: Option<String>,
}Expand description
One entry of a Node::FieldRegion: a marker/key/value triple, any of which
may be absent. Mirrors docling’s field_item with its marker / field_key
/ field_value child texts.
Fields§
§marker: Option<String>§key: Option<String>§value: Option<String>Trait Implementations§
impl StructuralPartialEq for FieldItem
Auto Trait Implementations§
impl Freeze for FieldItem
impl RefUnwindSafe for FieldItem
impl Send for FieldItem
impl Sync for FieldItem
impl Unpin for FieldItem
impl UnsafeUnpin for FieldItem
impl UnwindSafe for FieldItem
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