pub enum PromptCacheDiagnostics {
CacheMiss(PromptCacheMissDiagnosticsBody),
CacheHit,
ComparisonResponseNotFound,
Unavailable,
}Available on crate feature
response-types only.Expand description
Prompt cache diagnostics requested for this response.
Variants§
Trait Implementations§
Source§impl Clone for PromptCacheDiagnostics
impl Clone for PromptCacheDiagnostics
Source§fn clone(&self) -> PromptCacheDiagnostics
fn clone(&self) -> PromptCacheDiagnostics
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 PromptCacheDiagnostics
impl Debug for PromptCacheDiagnostics
Source§impl<'de> Deserialize<'de> for PromptCacheDiagnostics
impl<'de> Deserialize<'de> for PromptCacheDiagnostics
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 PromptCacheDiagnostics
impl PartialEq for PromptCacheDiagnostics
Source§impl Serialize for PromptCacheDiagnostics
impl Serialize for PromptCacheDiagnostics
impl StructuralPartialEq for PromptCacheDiagnostics
Auto Trait Implementations§
impl Freeze for PromptCacheDiagnostics
impl RefUnwindSafe for PromptCacheDiagnostics
impl Send for PromptCacheDiagnostics
impl Sync for PromptCacheDiagnostics
impl Unpin for PromptCacheDiagnostics
impl UnsafeUnpin for PromptCacheDiagnostics
impl UnwindSafe for PromptCacheDiagnostics
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