pub enum AssertionTarget {
Input,
Output,
StructuredOutput,
Sequence,
}Expand description
Payload targets that can be inspected by assertions.
Variants§
Input
The generated tool input object.
Output
The raw tool output object.
StructuredOutput
The structured tool output object, when present or required by schema.
Sequence
The full run sequence payload.
Trait Implementations§
Source§impl Clone for AssertionTarget
impl Clone for AssertionTarget
Source§fn clone(&self) -> AssertionTarget
fn clone(&self) -> AssertionTarget
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 moreSource§impl Debug for AssertionTarget
impl Debug for AssertionTarget
Source§impl<'de> Deserialize<'de> for AssertionTarget
impl<'de> Deserialize<'de> for AssertionTarget
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
Auto Trait Implementations§
impl Freeze for AssertionTarget
impl RefUnwindSafe for AssertionTarget
impl Send for AssertionTarget
impl Sync for AssertionTarget
impl Unpin for AssertionTarget
impl UnsafeUnpin for AssertionTarget
impl UnwindSafe for AssertionTarget
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