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