pub struct RunErrorInfo {
pub run_id: String,
pub model_name: String,
pub error: String,
pub error_kind: Option<String>,
pub streaming: bool,
pub duration: Duration,
}Fields§
§run_id: String§model_name: String§error: String§error_kind: Option<String>§streaming: bool§duration: DurationTrait Implementations§
Source§impl Clone for RunErrorInfo
impl Clone for RunErrorInfo
Source§fn clone(&self) -> RunErrorInfo
fn clone(&self) -> RunErrorInfo
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 moreAuto Trait Implementations§
impl Freeze for RunErrorInfo
impl RefUnwindSafe for RunErrorInfo
impl Send for RunErrorInfo
impl Sync for RunErrorInfo
impl Unpin for RunErrorInfo
impl UnwindSafe for RunErrorInfo
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