pub struct GetRunStepQuery {
pub include: Option<Vec<String>>,
}Available on crate feature
assistant-types only.Expand description
Query parameters for retrieving a run step.
Fields§
§include: Option<Vec<String>>A list of additional fields to include in the response. Currently the only supported value is step_details.tool_calls[*].file_search.results[*].content to fetch the file search result content.
Trait Implementations§
Source§impl Clone for GetRunStepQuery
impl Clone for GetRunStepQuery
Source§fn clone(&self) -> GetRunStepQuery
fn clone(&self) -> GetRunStepQuery
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 GetRunStepQuery
impl Debug for GetRunStepQuery
Source§impl Default for GetRunStepQuery
impl Default for GetRunStepQuery
Source§fn default() -> GetRunStepQuery
fn default() -> GetRunStepQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetRunStepQuery
impl PartialEq for GetRunStepQuery
Source§impl Serialize for GetRunStepQuery
impl Serialize for GetRunStepQuery
impl StructuralPartialEq for GetRunStepQuery
Auto Trait Implementations§
impl Freeze for GetRunStepQuery
impl RefUnwindSafe for GetRunStepQuery
impl Send for GetRunStepQuery
impl Sync for GetRunStepQuery
impl Unpin for GetRunStepQuery
impl UnwindSafe for GetRunStepQuery
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