#[non_exhaustive]pub enum StrReplaceEditorToolName {
StrReplaceEditor,
}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.
StrReplaceEditor
Trait Implementations§
Source§impl Clone for StrReplaceEditorToolName
impl Clone for StrReplaceEditorToolName
Source§fn clone(&self) -> StrReplaceEditorToolName
fn clone(&self) -> StrReplaceEditorToolName
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 moreSource§impl Debug for StrReplaceEditorToolName
impl Debug for StrReplaceEditorToolName
Source§impl<'de> Deserialize<'de> for StrReplaceEditorToolName
impl<'de> Deserialize<'de> for StrReplaceEditorToolName
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 StrReplaceEditorToolName
Source§impl PartialEq for StrReplaceEditorToolName
impl PartialEq for StrReplaceEditorToolName
Source§impl Serialize for StrReplaceEditorToolName
impl Serialize for StrReplaceEditorToolName
impl StructuralPartialEq for StrReplaceEditorToolName
Auto Trait Implementations§
impl Freeze for StrReplaceEditorToolName
impl RefUnwindSafe for StrReplaceEditorToolName
impl Send for StrReplaceEditorToolName
impl Sync for StrReplaceEditorToolName
impl Unpin for StrReplaceEditorToolName
impl UnsafeUnpin for StrReplaceEditorToolName
impl UnwindSafe for StrReplaceEditorToolName
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