pub struct HttpStatInsertParams {Show 25 fields
pub target_id: i64,
pub target_name: String,
pub url: String,
pub dns_lookup: Option<i32>,
pub quic_connect: Option<i32>,
pub tcp_connect: Option<i32>,
pub tls_handshake: Option<i32>,
pub server_processing: Option<i32>,
pub content_transfer: Option<i32>,
pub total: Option<i32>,
pub addr: String,
pub status_code: Option<i16>,
pub tls: Option<String>,
pub alpn: Option<String>,
pub subject: Option<String>,
pub issuer: Option<String>,
pub cert_not_before: Option<String>,
pub cert_not_after: Option<String>,
pub cert_cipher: Option<String>,
pub cert_domains: Option<String>,
pub body_size: Option<i32>,
pub region: String,
pub error: Option<String>,
pub result: i16,
pub remark: String,
}Fields§
§target_id: i64§target_name: String§url: String§dns_lookup: Option<i32>§quic_connect: Option<i32>§tcp_connect: Option<i32>§tls_handshake: Option<i32>§server_processing: Option<i32>§content_transfer: Option<i32>§total: Option<i32>§addr: String§status_code: Option<i16>§tls: Option<String>§alpn: Option<String>§subject: Option<String>§issuer: Option<String>§cert_not_before: Option<String>§cert_not_after: Option<String>§cert_cipher: Option<String>§cert_domains: Option<String>§body_size: Option<i32>§region: String§error: Option<String>§result: i16§remark: StringTrait Implementations§
Source§impl Debug for HttpStatInsertParams
impl Debug for HttpStatInsertParams
Source§impl Default for HttpStatInsertParams
impl Default for HttpStatInsertParams
Source§fn default() -> HttpStatInsertParams
fn default() -> HttpStatInsertParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpStatInsertParams
impl<'de> Deserialize<'de> for HttpStatInsertParams
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 HttpStatInsertParams
impl RefUnwindSafe for HttpStatInsertParams
impl Send for HttpStatInsertParams
impl Sync for HttpStatInsertParams
impl Unpin for HttpStatInsertParams
impl UnsafeUnpin for HttpStatInsertParams
impl UnwindSafe for HttpStatInsertParams
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