use crate::functions;
use serde::{Deserialize, Serialize};
use schemars::JsonSchema;
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[schemars(rename = "functions.executions.response.Output")]
pub struct Output {
pub output: functions::expression::TaskOutputOwned,
}
impl Output {
pub fn unwrap(self) -> functions::expression::TaskOutputOwned {
self.output
}
}