pub struct OutputText {
pub annotations: Vec<Annotation>,
pub text: String,
}
Expand description
A simple text output from the model.
Fields§
§annotations: Vec<Annotation>
The annotations of the text output.
text: String
The text output from the model.
Trait Implementations§
Source§impl Clone for OutputText
impl Clone for OutputText
Source§fn clone(&self) -> OutputText
fn clone(&self) -> OutputText
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 OutputText
impl Debug for OutputText
Source§impl<'de> Deserialize<'de> for OutputText
impl<'de> Deserialize<'de> for OutputText
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 OutputText
impl PartialEq for OutputText
Source§impl Serialize for OutputText
impl Serialize for OutputText
impl StructuralPartialEq for OutputText
Auto Trait Implementations§
impl Freeze for OutputText
impl RefUnwindSafe for OutputText
impl Send for OutputText
impl Sync for OutputText
impl Unpin for OutputText
impl UnwindSafe for OutputText
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