pub enum ResultChunk {
Text {
text: String,
},
Image {
source: ImageSource,
},
}Expand description
A single chunk of a tool result (a restricted set of block kinds).
Variants§
Text
Text output.
Image
Image output (e.g. a screenshot).
Fields
§
source: ImageSourceWhere the image bytes come from.
Trait Implementations§
Source§impl Clone for ResultChunk
impl Clone for ResultChunk
Source§fn clone(&self) -> ResultChunk
fn clone(&self) -> ResultChunk
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 ResultChunk
impl Debug for ResultChunk
Source§impl<'de> Deserialize<'de> for ResultChunk
impl<'de> Deserialize<'de> for ResultChunk
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResultChunk, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResultChunk, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResultChunk
impl PartialEq for ResultChunk
Source§impl Serialize for ResultChunk
impl Serialize for ResultChunk
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ResultChunk
Auto Trait Implementations§
impl Freeze for ResultChunk
impl RefUnwindSafe for ResultChunk
impl Send for ResultChunk
impl Sync for ResultChunk
impl Unpin for ResultChunk
impl UnsafeUnpin for ResultChunk
impl UnwindSafe for ResultChunk
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