pub struct EvalOutputItem {
pub id: String,
pub object: String,
pub status: Option<String>,
pub output: Option<EvalOutput>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 eval run output item。
Fields§
§id: StringItem ID。
object: String对象类型。
status: Option<String>当前状态。
output: Option<EvalOutput>输出内容。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for EvalOutputItem
impl Clone for EvalOutputItem
Source§fn clone(&self) -> EvalOutputItem
fn clone(&self) -> EvalOutputItem
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 EvalOutputItem
impl Debug for EvalOutputItem
Source§impl Default for EvalOutputItem
impl Default for EvalOutputItem
Source§fn default() -> EvalOutputItem
fn default() -> EvalOutputItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvalOutputItem
impl<'de> Deserialize<'de> for EvalOutputItem
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 EvalOutputItem
impl RefUnwindSafe for EvalOutputItem
impl Send for EvalOutputItem
impl Sync for EvalOutputItem
impl Unpin for EvalOutputItem
impl UnsafeUnpin for EvalOutputItem
impl UnwindSafe for EvalOutputItem
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