pub struct ModelErrorInfo<'a> {
pub session_id: &'a str,
pub step: u32,
pub model: &'a str,
pub error: &'a str,
}Expand description
Info passed to Instrumenter::on_model_error.
Fields§
§session_id: &'a str§step: u32§model: &'a str§error: &'a strTrait Implementations§
Source§impl<'a> Clone for ModelErrorInfo<'a>
impl<'a> Clone for ModelErrorInfo<'a>
Source§fn clone(&self) -> ModelErrorInfo<'a>
fn clone(&self) -> ModelErrorInfo<'a>
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<'a> Freeze for ModelErrorInfo<'a>
impl<'a> RefUnwindSafe for ModelErrorInfo<'a>
impl<'a> Send for ModelErrorInfo<'a>
impl<'a> Sync for ModelErrorInfo<'a>
impl<'a> Unpin for ModelErrorInfo<'a>
impl<'a> UnsafeUnpin for ModelErrorInfo<'a>
impl<'a> UnwindSafe for ModelErrorInfo<'a>
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