pub struct FrameworkFailure {
pub name: String,
pub error: String,
}Expand description
Result of a failed framework enable attempt.
Fields§
§name: StringThe framework name (e.g., “claude”, “gemini”, “codex”).
error: StringError message describing what went wrong.
Trait Implementations§
Source§impl Clone for FrameworkFailure
impl Clone for FrameworkFailure
Source§fn clone(&self) -> FrameworkFailure
fn clone(&self) -> FrameworkFailure
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 FrameworkFailure
impl RefUnwindSafe for FrameworkFailure
impl Send for FrameworkFailure
impl Sync for FrameworkFailure
impl Unpin for FrameworkFailure
impl UnwindSafe for FrameworkFailure
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