pub enum EnvironmentNameSpacing {
Spaced,
Compact,
}Expand description
Whether \begin / \end get a space before the name brace.
Spaced -> \begin {matrix}, Compact -> \begin{matrix}.
The environment name inside {} is always compact, and this setting is
independent from CommandSpacing.
Variants§
Trait Implementations§
Source§impl Clone for EnvironmentNameSpacing
impl Clone for EnvironmentNameSpacing
Source§fn clone(&self) -> EnvironmentNameSpacing
fn clone(&self) -> EnvironmentNameSpacing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EnvironmentNameSpacing
Source§impl Debug for EnvironmentNameSpacing
impl Debug for EnvironmentNameSpacing
Source§impl Default for EnvironmentNameSpacing
impl Default for EnvironmentNameSpacing
Source§fn default() -> EnvironmentNameSpacing
fn default() -> EnvironmentNameSpacing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentNameSpacing
impl<'de> Deserialize<'de> for EnvironmentNameSpacing
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
impl Eq for EnvironmentNameSpacing
Source§impl PartialEq for EnvironmentNameSpacing
impl PartialEq for EnvironmentNameSpacing
Source§fn eq(&self, other: &EnvironmentNameSpacing) -> bool
fn eq(&self, other: &EnvironmentNameSpacing) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EnvironmentNameSpacing
impl Serialize for EnvironmentNameSpacing
impl StructuralPartialEq for EnvironmentNameSpacing
Auto Trait Implementations§
impl Freeze for EnvironmentNameSpacing
impl RefUnwindSafe for EnvironmentNameSpacing
impl Send for EnvironmentNameSpacing
impl Sync for EnvironmentNameSpacing
impl Unpin for EnvironmentNameSpacing
impl UnsafeUnpin for EnvironmentNameSpacing
impl UnwindSafe for EnvironmentNameSpacing
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.