pub struct GroundingCell {
pub row: u32,
pub col: u32,
pub row_span: u32,
pub col_span: u32,
pub bbox: [i64; 4],
pub text: String,
}Expand description
A table cell exposed for table_cell claims.
Fields§
§row: u320-based row.
col: u320-based column.
row_span: u32Rows spanned (≥1).
col_span: u32Columns spanned (≥1).
bbox: [i64; 4]Cell bbox.
text: StringCell text.
Trait Implementations§
Source§impl Clone for GroundingCell
impl Clone for GroundingCell
Source§fn clone(&self) -> GroundingCell
fn clone(&self) -> GroundingCell
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 GroundingCell
impl Debug for GroundingCell
Source§impl<'de> Deserialize<'de> for GroundingCell
impl<'de> Deserialize<'de> for GroundingCell
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 GroundingCell
Source§impl PartialEq for GroundingCell
impl PartialEq for GroundingCell
Source§fn eq(&self, other: &GroundingCell) -> bool
fn eq(&self, other: &GroundingCell) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GroundingCell
impl Serialize for GroundingCell
impl StructuralPartialEq for GroundingCell
Auto Trait Implementations§
impl Freeze for GroundingCell
impl RefUnwindSafe for GroundingCell
impl Send for GroundingCell
impl Sync for GroundingCell
impl Unpin for GroundingCell
impl UnsafeUnpin for GroundingCell
impl UnwindSafe for GroundingCell
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