pub struct UpdateSheetProperty {
pub sheet_id: String,
pub title: String,
pub index: Option<i32>,
pub hidden: Option<bool>,
pub frozen_col_count: Option<i32>,
pub frozen_row_count: Option<i32>,
pub protect: Option<UpdateSheetPropertyProtect>,
}Expand description
工作表属性
Fields§
§sheet_id: String要更新的工作表的 ID。调用获取工作表获取 ID
title: String工作表的标题
index: Option<i32>工作表的位置
是否要隐藏表格。默认值为 false
frozen_col_count: Option<i32>要冻结的工作表的行数。小于或等于工作表的最大行数,0 表示取消冻结行
frozen_row_count: Option<i32>要冻结的工作表的列数。小于等于工作表的最大列数,0 表示取消冻结列
protect: Option<UpdateSheetPropertyProtect>是否要保护该工作表
Trait Implementations§
Source§impl Debug for UpdateSheetProperty
impl Debug for UpdateSheetProperty
Source§impl Default for UpdateSheetProperty
impl Default for UpdateSheetProperty
Source§fn default() -> UpdateSheetProperty
fn default() -> UpdateSheetProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSheetProperty
impl<'de> Deserialize<'de> for UpdateSheetProperty
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
Auto Trait Implementations§
impl Freeze for UpdateSheetProperty
impl RefUnwindSafe for UpdateSheetProperty
impl Send for UpdateSheetProperty
impl Sync for UpdateSheetProperty
impl Unpin for UpdateSheetProperty
impl UnwindSafe for UpdateSheetProperty
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