pub struct WorkbookProtection {
pub workbook_password: Option<String>,
pub lock_structure: Option<bool>,
pub lock_windows: Option<bool>,
pub revisions_password: Option<String>,
pub lock_revision: Option<bool>,
}Expand description
Workbook-level protection settings.
Fields§
§workbook_password: Option<String>§lock_structure: Option<bool>§lock_windows: Option<bool>§revisions_password: Option<String>§lock_revision: Option<bool>Trait Implementations§
Source§impl Clone for WorkbookProtection
impl Clone for WorkbookProtection
Source§fn clone(&self) -> WorkbookProtection
fn clone(&self) -> WorkbookProtection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorkbookProtection
impl Debug for WorkbookProtection
Source§impl<'de> Deserialize<'de> for WorkbookProtection
impl<'de> Deserialize<'de> for WorkbookProtection
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
Source§impl PartialEq for WorkbookProtection
impl PartialEq for WorkbookProtection
Source§impl Serialize for WorkbookProtection
impl Serialize for WorkbookProtection
impl StructuralPartialEq for WorkbookProtection
Auto Trait Implementations§
impl Freeze for WorkbookProtection
impl RefUnwindSafe for WorkbookProtection
impl Send for WorkbookProtection
impl Sync for WorkbookProtection
impl Unpin for WorkbookProtection
impl UnwindSafe for WorkbookProtection
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