#[non_exhaustive]pub enum IndentKeyword {
Tab,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Tab
Trait Implementations§
Source§impl Clone for IndentKeyword
impl Clone for IndentKeyword
Source§fn clone(&self) -> IndentKeyword
fn clone(&self) -> IndentKeyword
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 IndentKeyword
Source§impl Debug for IndentKeyword
impl Debug for IndentKeyword
Source§impl Default for IndentKeyword
impl Default for IndentKeyword
Source§fn default() -> IndentKeyword
fn default() -> IndentKeyword
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IndentKeyword
impl RefUnwindSafe for IndentKeyword
impl Send for IndentKeyword
impl Sync for IndentKeyword
impl Unpin for IndentKeyword
impl UnsafeUnpin for IndentKeyword
impl UnwindSafe for IndentKeyword
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