pub struct DapConfig {
pub log_level: String,
pub mode: DapMode,
pub workspace_root: Option<PathBuf>,
}Expand description
DAP server configuration
Controls the operating mode, logging, and workspace context for the DAP server.
Fields§
§log_level: StringLogging level for DAP operations
mode: DapModeOperating mode (native or bridge)
workspace_root: Option<PathBuf>Workspace root directory
Auto Trait Implementations§
impl Freeze for DapConfig
impl RefUnwindSafe for DapConfig
impl Send for DapConfig
impl Sync for DapConfig
impl Unpin for DapConfig
impl UnsafeUnpin for DapConfig
impl UnwindSafe for DapConfig
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