pub enum IndentEnabled {
TRUE = 1,
}
Expand description
Determines whether indent
/ outdent
is enabled. When serializing, the
value will be set as a numeric “1”. No other value is required to be set.
See Specify Row Location for more details.
Variants§
TRUE = 1
Trait Implementations§
Source§impl Clone for IndentEnabled
impl Clone for IndentEnabled
Source§fn clone(&self) -> IndentEnabled
fn clone(&self) -> IndentEnabled
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IndentEnabled
impl Debug for IndentEnabled
Source§impl<'de> Deserialize<'de> for IndentEnabled
impl<'de> Deserialize<'de> for IndentEnabled
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 IndentEnabled
impl PartialEq for IndentEnabled
Source§impl Serialize for IndentEnabled
impl Serialize for IndentEnabled
impl Copy for IndentEnabled
impl StructuralPartialEq for IndentEnabled
Auto Trait Implementations§
impl Freeze for IndentEnabled
impl RefUnwindSafe for IndentEnabled
impl Send for IndentEnabled
impl Sync for IndentEnabled
impl Unpin for IndentEnabled
impl UnwindSafe for IndentEnabled
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