pub struct DataEntry {
pub requestURL: String,
pub requestMethod: String,
pub requestHeaders: Vec<Header>,
pub responseTime: f64,
pub responseStatus: i64,
pub responseStatusText: String,
pub responseType: CachedResponseType,
pub responseHeaders: Vec<Header>,
}Expand description
Data entry.
Fields§
§requestURL: StringRequest URL.
requestMethod: StringRequest method.
requestHeaders: Vec<Header>Request headers
responseTime: f64Number of seconds since epoch.
responseStatus: i64HTTP response status code.
responseStatusText: StringHTTP response status text.
responseType: CachedResponseTypeHTTP response type
responseHeaders: Vec<Header>Response headers
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataEntry
impl<'de> Deserialize<'de> for DataEntry
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 DataEntry
impl RefUnwindSafe for DataEntry
impl Send for DataEntry
impl Sync for DataEntry
impl Unpin for DataEntry
impl UnsafeUnpin for DataEntry
impl UnwindSafe for DataEntry
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