pub struct RunObjectIncompleteDetails {
pub reason: Option<RunObjectIncompleteDetailsReason>,
}
Expand description
Details on why the run is incomplete. Will be null
if the run is not incomplete.
Fields§
§reason: Option<RunObjectIncompleteDetailsReason>
The reason why the run is incomplete. This will point to which specific token limit was reached over the course of the run.
Implementations§
Trait Implementations§
Source§impl Clone for RunObjectIncompleteDetails
impl Clone for RunObjectIncompleteDetails
Source§fn clone(&self) -> RunObjectIncompleteDetails
fn clone(&self) -> RunObjectIncompleteDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RunObjectIncompleteDetails
impl Debug for RunObjectIncompleteDetails
Source§impl Default for RunObjectIncompleteDetails
impl Default for RunObjectIncompleteDetails
Source§fn default() -> RunObjectIncompleteDetails
fn default() -> RunObjectIncompleteDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunObjectIncompleteDetails
impl<'de> Deserialize<'de> for RunObjectIncompleteDetails
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 RunObjectIncompleteDetails
impl PartialEq for RunObjectIncompleteDetails
Source§fn eq(&self, other: &RunObjectIncompleteDetails) -> bool
fn eq(&self, other: &RunObjectIncompleteDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for RunObjectIncompleteDetails
impl StructuralPartialEq for RunObjectIncompleteDetails
Auto Trait Implementations§
impl Freeze for RunObjectIncompleteDetails
impl RefUnwindSafe for RunObjectIncompleteDetails
impl Send for RunObjectIncompleteDetails
impl Sync for RunObjectIncompleteDetails
impl Unpin for RunObjectIncompleteDetails
impl UnwindSafe for RunObjectIncompleteDetails
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