pub struct RequestSnapshot {Show 22 fields
pub id: String,
pub request_id: String,
pub method: String,
pub path: String,
pub status: u16,
pub duration_ms: f64,
pub at_ms: u64,
pub logs: Vec<LogLine>,
pub queries: Vec<QueryLine>,
pub http: Vec<HttpLine>,
pub mail: Vec<MailLine>,
pub jobs: Vec<JobLine>,
pub cache: Vec<CacheLine>,
pub graphql: Vec<GraphqlLine>,
pub grpc: Vec<GrpcLine>,
pub rabbit: Vec<RabbitLine>,
pub auth: AuthSnap,
pub route: RouteSnap,
pub locale: Option<String>,
pub csrf: Option<bool>,
pub rate_limit: Option<RateLimitSnap>,
pub encoding: Option<String>,
}Fields§
§id: String§request_id: String§method: String§path: String§status: u16§duration_ms: f64§at_ms: u64§logs: Vec<LogLine>§queries: Vec<QueryLine>§http: Vec<HttpLine>§mail: Vec<MailLine>§jobs: Vec<JobLine>§cache: Vec<CacheLine>§graphql: Vec<GraphqlLine>§grpc: Vec<GrpcLine>§rabbit: Vec<RabbitLine>§auth: AuthSnap§route: RouteSnap§locale: Option<String>§csrf: Option<bool>§rate_limit: Option<RateLimitSnap>§encoding: Option<String>Trait Implementations§
Source§impl Clone for RequestSnapshot
impl Clone for RequestSnapshot
Source§fn clone(&self) -> RequestSnapshot
fn clone(&self) -> RequestSnapshot
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 RequestSnapshot
impl Debug for RequestSnapshot
Auto Trait Implementations§
impl Freeze for RequestSnapshot
impl RefUnwindSafe for RequestSnapshot
impl Send for RequestSnapshot
impl Sync for RequestSnapshot
impl Unpin for RequestSnapshot
impl UnsafeUnpin for RequestSnapshot
impl UnwindSafe for RequestSnapshot
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