pub struct GroundingTable {
pub id: String,
pub page: String,
pub bbox: [i64; 4],
pub cells: Vec<GroundingCell>,
}Expand description
A table exposed for table_cell claims.
Fields§
§id: StringTable id in the source’s namespace.
page: StringOwning page id (first page for multi-page tables).
bbox: [i64; 4]Table bbox.
cells: Vec<GroundingCell>Cells; absence of a (row, col) means an empty/covered cell.
Trait Implementations§
Source§impl Clone for GroundingTable
impl Clone for GroundingTable
Source§fn clone(&self) -> GroundingTable
fn clone(&self) -> GroundingTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GroundingTable
impl Debug for GroundingTable
Source§impl<'de> Deserialize<'de> for GroundingTable
impl<'de> Deserialize<'de> for GroundingTable
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 Eq for GroundingTable
Source§impl PartialEq for GroundingTable
impl PartialEq for GroundingTable
Source§fn eq(&self, other: &GroundingTable) -> bool
fn eq(&self, other: &GroundingTable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GroundingTable
impl Serialize for GroundingTable
impl StructuralPartialEq for GroundingTable
Auto Trait Implementations§
impl Freeze for GroundingTable
impl RefUnwindSafe for GroundingTable
impl Send for GroundingTable
impl Sync for GroundingTable
impl Unpin for GroundingTable
impl UnsafeUnpin for GroundingTable
impl UnwindSafe for GroundingTable
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