pub struct UpdateSheetPropertyProtect {
pub lock: bool,
pub lock_info: Option<String>,
pub user_ids: Option<Vec<String>>,
}Expand description
是否要保护该工作表
Fields§
§lock: bool是否要保护该工作表。可选值:
LOCK:保护 UNLOCK:取消保护
lock_info: Option<String>保护工作表的备注信息
user_ids: Option<Vec<String>>除了本人与所有者外,添加其他人员的 ID,为其它人员添加保护范围的编辑权限。ID 类型由查询参数 user_id_type 决定。user_id_type 不为空时,该字段生效。
Trait Implementations§
Source§impl Debug for UpdateSheetPropertyProtect
impl Debug for UpdateSheetPropertyProtect
Source§impl<'de> Deserialize<'de> for UpdateSheetPropertyProtect
impl<'de> Deserialize<'de> for UpdateSheetPropertyProtect
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 UpdateSheetPropertyProtect
impl RefUnwindSafe for UpdateSheetPropertyProtect
impl Send for UpdateSheetPropertyProtect
impl Sync for UpdateSheetPropertyProtect
impl Unpin for UpdateSheetPropertyProtect
impl UnwindSafe for UpdateSheetPropertyProtect
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