pub struct Config {
pub notebook: Option<String>,
pub commit_signing_disabled: bool,
pub create_notebook: bool,
pub show_paths: bool,
}Expand description
Command-line configuration for the MCP server.
Fields§
§notebook: Option<String>Default notebook (CLI –notebook overrides NB_MCP_NOTEBOOK env var).
commit_signing_disabled: boolDisable commit and tag signing in the notebook repository.
create_notebook: boolAutomatically create missing notebooks.
show_paths: boolShow notebook and state paths, then exit.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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