pub enum ExtensionCapability {
TextProcessing,
SyntaxHighlighting,
CodeCompletion,
Linting,
FormatSupport,
CustomCommands,
UserInterface,
ToolIntegration,
EventHandling,
Performance,
}Expand description
Extension capabilities that can be provided
Variants§
TextProcessing
Text processing and transformation
SyntaxHighlighting
Syntax highlighting and theming
CodeCompletion
Code completion and suggestions
Linting
Linting and validation
FormatSupport
Import/export format support
CustomCommands
Custom commands and shortcuts
UserInterface
UI enhancements and widgets
ToolIntegration
External tool integration
EventHandling
Custom event handling
Performance
Performance monitoring
Implementations§
Source§impl ExtensionCapability
impl ExtensionCapability
Sourcepub fn description(&self) -> &'static str
pub fn description(&self) -> &'static str
Get a human-readable description of the capability
Trait Implementations§
Source§impl Clone for ExtensionCapability
impl Clone for ExtensionCapability
Source§fn clone(&self) -> ExtensionCapability
fn clone(&self) -> ExtensionCapability
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 ExtensionCapability
impl Debug for ExtensionCapability
Source§impl PartialEq for ExtensionCapability
impl PartialEq for ExtensionCapability
impl Eq for ExtensionCapability
impl StructuralPartialEq for ExtensionCapability
Auto Trait Implementations§
impl Freeze for ExtensionCapability
impl RefUnwindSafe for ExtensionCapability
impl Send for ExtensionCapability
impl Sync for ExtensionCapability
impl Unpin for ExtensionCapability
impl UnwindSafe for ExtensionCapability
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