pub enum RewriteDecision {
Passthrough,
Rewrite(Value),
}Variants§
Passthrough
Rewrite(Value)
New tool_input to be marshaled by oby-hook into hookSpecificOutput.updatedInput.
Keeping this as a raw Value lets capturers stay independent of CC’s exact hook-output schema.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RewriteDecision
impl RefUnwindSafe for RewriteDecision
impl Send for RewriteDecision
impl Sync for RewriteDecision
impl Unpin for RewriteDecision
impl UnsafeUnpin for RewriteDecision
impl UnwindSafe for RewriteDecision
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