pub struct ToolResultPatch {
pub redacted_summary: String,
}Expand description
Describes the tool result patch portion of a runtime package snapshot. Use it when package authors or tests need explicit package configuration; validation and activation happen in package/runtime coordinators.
Fields§
§redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
Trait Implementations§
Source§impl Clone for ToolResultPatch
impl Clone for ToolResultPatch
Source§fn clone(&self) -> ToolResultPatch
fn clone(&self) -> ToolResultPatch
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 ToolResultPatch
impl Debug for ToolResultPatch
Source§impl<'de> Deserialize<'de> for ToolResultPatch
impl<'de> Deserialize<'de> for ToolResultPatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ToolResultPatch
impl PartialEq for ToolResultPatch
Source§fn eq(&self, other: &ToolResultPatch) -> bool
fn eq(&self, other: &ToolResultPatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolResultPatch
impl Serialize for ToolResultPatch
impl Eq for ToolResultPatch
impl StructuralPartialEq for ToolResultPatch
Auto Trait Implementations§
impl Freeze for ToolResultPatch
impl RefUnwindSafe for ToolResultPatch
impl Send for ToolResultPatch
impl Sync for ToolResultPatch
impl Unpin for ToolResultPatch
impl UnsafeUnpin for ToolResultPatch
impl UnwindSafe for ToolResultPatch
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