pub struct HttpLine {
pub method: String,
pub url: String,
pub status: Option<u16>,
pub duration_ms: Option<f64>,
pub error: Option<String>,
}Fields§
§method: String§url: String§status: Option<u16>§duration_ms: Option<f64>§error: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpLine
impl RefUnwindSafe for HttpLine
impl Send for HttpLine
impl Sync for HttpLine
impl Unpin for HttpLine
impl UnsafeUnpin for HttpLine
impl UnwindSafe for HttpLine
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