pub struct DebugCaptureEntry {
pub hints_applied: Option<HashMap<String, String>>,
pub id: String,
pub job_type: String,
pub prompt: Option<String>,
pub raw_content: Option<String>,
pub request: DebugCaptureLLMRequest,
pub response: DebugCaptureLLMResponse,
pub schema: Option<String>,
pub timestamp: String,
pub url: String,
}Fields§
§hints_applied: Option<HashMap<String, String>>Preprocessing hints applied
id: StringCapture ID
job_type: StringJob type (analyze, extract, crawl)
prompt: Option<String>Full prompt sent to LLM (for analyze jobs)
raw_content: Option<String>Page content (for extract/crawl jobs)
request: DebugCaptureLLMRequestLLM request metadata
response: DebugCaptureLLMResponseLLM response metadata
schema: Option<String>Schema used for extraction
timestamp: StringWhen the request was made
url: StringPage URL being processed
Trait Implementations§
Source§impl Clone for DebugCaptureEntry
impl Clone for DebugCaptureEntry
Source§fn clone(&self) -> DebugCaptureEntry
fn clone(&self) -> DebugCaptureEntry
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 DebugCaptureEntry
impl Debug for DebugCaptureEntry
Source§impl<'de> Deserialize<'de> for DebugCaptureEntry
impl<'de> Deserialize<'de> for DebugCaptureEntry
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 DebugCaptureEntry
impl RefUnwindSafe for DebugCaptureEntry
impl Send for DebugCaptureEntry
impl Sync for DebugCaptureEntry
impl Unpin for DebugCaptureEntry
impl UnwindSafe for DebugCaptureEntry
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