pub struct VsCodeExtensionConfig {
pub name: &'static str,
pub description: &'static str,
pub extension_id: &'static str,
}Expand description
Configuration for a VS Code extension watcher.
This struct holds the metadata needed to identify and describe a specific VS Code extension that uses the Cline-style task format.
Fields§
§name: &'static strShort identifier for the watcher (e.g., “cline”, “roo-code”).
description: &'static strHuman-readable description of the extension.
extension_id: &'static strVS Code extension ID (e.g., “saoudrizwan.claude-dev”).
Trait Implementations§
Source§impl Clone for VsCodeExtensionConfig
impl Clone for VsCodeExtensionConfig
Source§fn clone(&self) -> VsCodeExtensionConfig
fn clone(&self) -> VsCodeExtensionConfig
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 moreAuto Trait Implementations§
impl Freeze for VsCodeExtensionConfig
impl RefUnwindSafe for VsCodeExtensionConfig
impl Send for VsCodeExtensionConfig
impl Sync for VsCodeExtensionConfig
impl Unpin for VsCodeExtensionConfig
impl UnwindSafe for VsCodeExtensionConfig
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