pub struct ModelInvocationAudit {
pub id: String,
pub request_snapshot_id: String,
pub model: String,
pub state: ModelInvocationAuditState,
pub usage: TokenUsage,
pub error_code: Option<String>,
}Fields§
§id: String§request_snapshot_id: String§model: String§state: ModelInvocationAuditState§usage: TokenUsage§error_code: Option<String>Trait Implementations§
Source§impl Clone for ModelInvocationAudit
impl Clone for ModelInvocationAudit
Source§fn clone(&self) -> ModelInvocationAudit
fn clone(&self) -> ModelInvocationAudit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ModelInvocationAudit
impl RefUnwindSafe for ModelInvocationAudit
impl Send for ModelInvocationAudit
impl Sync for ModelInvocationAudit
impl Unpin for ModelInvocationAudit
impl UnsafeUnpin for ModelInvocationAudit
impl UnwindSafe for ModelInvocationAudit
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