pub struct AgentScorerConfig {
pub type: AgentScorerConfigType,
pub url: String,
pub timeout_ms: Option<i64>,
pub extra: HashMap<String, Value>,
}Expand description
AgentScorerConfig model.
Fields§
§type: AgentScorerConfigType§url: String§timeout_ms: Option<i64>§extra: HashMap<String, Value>Any additional properties the server returned.
Trait Implementations§
Source§impl Clone for AgentScorerConfig
impl Clone for AgentScorerConfig
Source§fn clone(&self) -> AgentScorerConfig
fn clone(&self) -> AgentScorerConfig
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 moreSource§impl Debug for AgentScorerConfig
impl Debug for AgentScorerConfig
Source§impl Default for AgentScorerConfig
impl Default for AgentScorerConfig
Source§fn default() -> AgentScorerConfig
fn default() -> AgentScorerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentScorerConfig
impl<'de> Deserialize<'de> for AgentScorerConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AgentScorerConfig
impl PartialEq for AgentScorerConfig
Source§impl Serialize for AgentScorerConfig
impl Serialize for AgentScorerConfig
impl StructuralPartialEq for AgentScorerConfig
Auto Trait Implementations§
impl Freeze for AgentScorerConfig
impl RefUnwindSafe for AgentScorerConfig
impl Send for AgentScorerConfig
impl Sync for AgentScorerConfig
impl Unpin for AgentScorerConfig
impl UnsafeUnpin for AgentScorerConfig
impl UnwindSafe for AgentScorerConfig
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