pub struct HttpResponse<TRes> {
pub id: i64,
pub correlation_id: i64,
pub timestamp: DateTime<Utc>,
pub status_code: i32,
pub headers: Value,
pub body: Option<Result<TRes, Bytes>>,
pub duration_ms: i64,
pub created_at: DateTime<Utc>,
}
Fields§
§id: i64
§correlation_id: i64
§timestamp: DateTime<Utc>
§status_code: i32
§headers: Value
§body: Option<Result<TRes, Bytes>>
§duration_ms: i64
§created_at: DateTime<Utc>
Trait Implementations§
Auto Trait Implementations§
impl<TRes> !Freeze for HttpResponse<TRes>
impl<TRes> RefUnwindSafe for HttpResponse<TRes>where
TRes: RefUnwindSafe,
impl<TRes> Send for HttpResponse<TRes>where
TRes: Send,
impl<TRes> Sync for HttpResponse<TRes>where
TRes: Sync,
impl<TRes> Unpin for HttpResponse<TRes>where
TRes: Unpin,
impl<TRes> UnwindSafe for HttpResponse<TRes>where
TRes: UnwindSafe,
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> 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