pub struct HandlerMeta {
pub changed_files: Vec<String>,
pub is_background: bool,
pub operation_id: Option<String>,
}Expand description
Metadata attached to a handler result.
Fields§
§changed_files: Vec<String>Files that were changed by this tool execution.
is_background: boolWhether this was a background/server command.
operation_id: Option<String>Operation ID for audit/undo tracking.
Trait Implementations§
Source§impl Clone for HandlerMeta
impl Clone for HandlerMeta
Source§fn clone(&self) -> HandlerMeta
fn clone(&self) -> HandlerMeta
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 HandlerMeta
impl Debug for HandlerMeta
Source§impl Default for HandlerMeta
impl Default for HandlerMeta
Source§fn default() -> HandlerMeta
fn default() -> HandlerMeta
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HandlerMeta
impl RefUnwindSafe for HandlerMeta
impl Send for HandlerMeta
impl Sync for HandlerMeta
impl Unpin for HandlerMeta
impl UnsafeUnpin for HandlerMeta
impl UnwindSafe for HandlerMeta
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