pub struct AddSheetProperty {
pub title: String,
pub index: Option<i32>,
}Expand description
工作表属性
Fields§
§title: String新增工作表的标题
index: Option<i32>新增工作表的位置。不填默认在工作表的第 0 索引位置增加工作表。
Trait Implementations§
Source§impl Debug for AddSheetProperty
impl Debug for AddSheetProperty
Source§impl Default for AddSheetProperty
impl Default for AddSheetProperty
Source§fn default() -> AddSheetProperty
fn default() -> AddSheetProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddSheetProperty
impl<'de> Deserialize<'de> for AddSheetProperty
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 AddSheetProperty
impl RefUnwindSafe for AddSheetProperty
impl Send for AddSheetProperty
impl Sync for AddSheetProperty
impl Unpin for AddSheetProperty
impl UnwindSafe for AddSheetProperty
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