#[non_exhaustive]pub struct ToolCallValidMetricValue {
pub score: Option<f32>,
/* private fields */
}Available on crate feature
evaluation-service only.Expand description
Tool call valid metric value for an instance.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.score: Option<f32>Output only. Tool call valid score.
Implementations§
Trait Implementations§
Source§impl Clone for ToolCallValidMetricValue
impl Clone for ToolCallValidMetricValue
Source§fn clone(&self) -> ToolCallValidMetricValue
fn clone(&self) -> ToolCallValidMetricValue
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 moreSource§impl Debug for ToolCallValidMetricValue
impl Debug for ToolCallValidMetricValue
Source§impl Default for ToolCallValidMetricValue
impl Default for ToolCallValidMetricValue
Source§fn default() -> ToolCallValidMetricValue
fn default() -> ToolCallValidMetricValue
Returns the “default value” for a type. Read more
Source§impl Message for ToolCallValidMetricValue
impl Message for ToolCallValidMetricValue
Source§impl PartialEq for ToolCallValidMetricValue
impl PartialEq for ToolCallValidMetricValue
impl StructuralPartialEq for ToolCallValidMetricValue
Auto Trait Implementations§
impl Freeze for ToolCallValidMetricValue
impl RefUnwindSafe for ToolCallValidMetricValue
impl Send for ToolCallValidMetricValue
impl Sync for ToolCallValidMetricValue
impl Unpin for ToolCallValidMetricValue
impl UnwindSafe for ToolCallValidMetricValue
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