pub struct Table {
pub name: String,
pub ref: String,
}Expand description
A workbook-scoped table declaration (structured-references spec §4).
Mirrors crate::named_range::NamedRange’s shape exactly: {name, ref}.
The range’s first row is always the header row in v1 — no separate
headerRow field (nothing needs the header anywhere else yet).
Fields§
§name: StringThe table’s name, e.g. Recipe. Unique across the workbook among
both table names and named-range names (case-insensitive).
ref: StringCanonical sheet-qualified A1 range: Sheet!A1:D12. Always a range
(never collapses to a single-cell form, even for a one-data-row table).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Table
impl<'de> Deserialize<'de> for Table
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 Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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