pub struct FixtureMatch {
pub model: String,
pub prompt_hash: String,
}Expand description
Match criteria a fixture declares against incoming LlmRequests.
Fields§
§model: StringLlmRequest::model to match exactly.
prompt_hash: StringLlmRequest::prompt_hash() to match exactly.
Trait Implementations§
Source§impl Clone for FixtureMatch
impl Clone for FixtureMatch
Source§fn clone(&self) -> FixtureMatch
fn clone(&self) -> FixtureMatch
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 FixtureMatch
impl Debug for FixtureMatch
Source§impl<'de> Deserialize<'de> for FixtureMatch
impl<'de> Deserialize<'de> for FixtureMatch
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
Auto Trait Implementations§
impl Freeze for FixtureMatch
impl RefUnwindSafe for FixtureMatch
impl Send for FixtureMatch
impl Sync for FixtureMatch
impl Unpin for FixtureMatch
impl UnsafeUnpin for FixtureMatch
impl UnwindSafe for FixtureMatch
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