pub struct AutoConfigureReport {
pub clients: Vec<ClientConfigReport>,
pub any_registered: bool,
pub hooks_installed: bool,
}Expand description
Aggregate report for the auto-configure phase.
Fields§
§clients: Vec<ClientConfigReport>§any_registered: boolTrue when at least one client was successfully registered.
hooks_installed: boolTrue when Claude Code hooks were installed (subset of MCP install).
Trait Implementations§
Source§impl Clone for AutoConfigureReport
impl Clone for AutoConfigureReport
Source§fn clone(&self) -> AutoConfigureReport
fn clone(&self) -> AutoConfigureReport
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 moreSource§impl Debug for AutoConfigureReport
impl Debug for AutoConfigureReport
Source§impl Default for AutoConfigureReport
impl Default for AutoConfigureReport
Source§fn default() -> AutoConfigureReport
fn default() -> AutoConfigureReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AutoConfigureReport
impl RefUnwindSafe for AutoConfigureReport
impl Send for AutoConfigureReport
impl Sync for AutoConfigureReport
impl Unpin for AutoConfigureReport
impl UnsafeUnpin for AutoConfigureReport
impl UnwindSafe for AutoConfigureReport
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