pub struct McpSettingsView {
pub tool_prefix: String,
pub idle_timeout: Option<u64>,
pub total_servers: usize,
pub connected_servers: usize,
pub total_tools: usize,
}Expand description
Stable since 0.63.0
Settings summary for the dashboard header.Fields§
§tool_prefix: StringCurrent tool prefix mode as a string (“server”, “short”, “none”).
idle_timeout: Option<u64>Global idle timeout in minutes.
total_servers: usizeTotal number of configured servers.
connected_servers: usizeNumber of currently connected servers.
total_tools: usizeTotal number of known tools (across all servers).
Trait Implementations§
Source§impl Clone for McpSettingsView
impl Clone for McpSettingsView
Source§fn clone(&self) -> McpSettingsView
fn clone(&self) -> McpSettingsView
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 moreAuto Trait Implementations§
impl Freeze for McpSettingsView
impl RefUnwindSafe for McpSettingsView
impl Send for McpSettingsView
impl Sync for McpSettingsView
impl Unpin for McpSettingsView
impl UnsafeUnpin for McpSettingsView
impl UnwindSafe for McpSettingsView
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