pub struct TableInfo {
pub name: String,
pub display_name: String,
pub range: String,
pub show_header_row: bool,
pub auto_filter: bool,
pub columns: Vec<String>,
pub style_name: Option<String>,
}Expand description
Metadata about an existing table, returned by list/get operations.
Fields§
§name: StringThe table name.
display_name: StringThe display name.
range: StringThe cell range (e.g. “A1:D10”).
show_header_row: boolWhether the table has a header row.
auto_filter: boolWhether auto-filter is enabled.
columns: Vec<String>Column names.
style_name: Option<String>The style name, if any.
Trait Implementations§
impl StructuralPartialEq for TableInfo
Auto Trait Implementations§
impl Freeze for TableInfo
impl RefUnwindSafe for TableInfo
impl Send for TableInfo
impl Sync for TableInfo
impl Unpin for TableInfo
impl UnwindSafe for TableInfo
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