pub struct FinishedRequest {Show 17 fields
pub id: u64,
pub session_id: Option<String>,
pub cwd: Option<String>,
pub model: Option<String>,
pub reasoning_effort: Option<String>,
pub config_name: Option<String>,
pub provider_id: Option<String>,
pub upstream_base_url: Option<String>,
pub usage: Option<UsageMetrics>,
pub retry: Option<RetryInfo>,
pub service: String,
pub method: String,
pub path: String,
pub status_code: u16,
pub duration_ms: u64,
pub ttfb_ms: Option<u64>,
pub ended_at_ms: u64,
}Fields§
§id: u64§session_id: Option<String>§cwd: Option<String>§model: Option<String>§reasoning_effort: Option<String>§config_name: Option<String>§provider_id: Option<String>§upstream_base_url: Option<String>§usage: Option<UsageMetrics>§retry: Option<RetryInfo>§service: String§method: String§path: String§status_code: u16§duration_ms: u64§ttfb_ms: Option<u64>§ended_at_ms: u64Trait Implementations§
Source§impl Clone for FinishedRequest
impl Clone for FinishedRequest
Source§fn clone(&self) -> FinishedRequest
fn clone(&self) -> FinishedRequest
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 FinishedRequest
impl Debug for FinishedRequest
Source§impl<'de> Deserialize<'de> for FinishedRequest
impl<'de> Deserialize<'de> for FinishedRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FinishedRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FinishedRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FinishedRequest
impl PartialEq for FinishedRequest
Source§impl Serialize for FinishedRequest
impl Serialize for FinishedRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for FinishedRequest
impl StructuralPartialEq for FinishedRequest
Auto Trait Implementations§
impl Freeze for FinishedRequest
impl RefUnwindSafe for FinishedRequest
impl Send for FinishedRequest
impl Sync for FinishedRequest
impl Unpin for FinishedRequest
impl UnwindSafe for FinishedRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more