pub struct PreviewResult {
pub name: String,
pub hooks_config: Value,
pub config_format: ConfigFormat,
}Expand description
Result of previewing enable for a single framework.
Fields§
§name: StringThe framework name (e.g., “claude”, “gemini”, “codex”).
hooks_config: ValueThe hooks configuration that would be installed.
config_format: ConfigFormatThe config format for this framework (JSON or TOML).
Trait Implementations§
Source§impl Clone for PreviewResult
impl Clone for PreviewResult
Source§fn clone(&self) -> PreviewResult
fn clone(&self) -> PreviewResult
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 PreviewResult
impl RefUnwindSafe for PreviewResult
impl Send for PreviewResult
impl Sync for PreviewResult
impl Unpin for PreviewResult
impl UnwindSafe for PreviewResult
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