pub struct HttpAnalysisResult {}Expand description
Result of analyzing HTTP packets, mirrors the database-agnostic shape of
HuginnNetHttp::analyze_*.
Field availability depends on the enabled HTTP features:
- [
Self::http_request] requires thep0f-requestfeature. - [
Self::http_response] requires thep0f-responsefeature.
Use Self::empty to construct a fallback value that is valid under any
feature combination.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpAnalysisResult
impl RefUnwindSafe for HttpAnalysisResult
impl Send for HttpAnalysisResult
impl Sync for HttpAnalysisResult
impl Unpin for HttpAnalysisResult
impl UnsafeUnpin for HttpAnalysisResult
impl UnwindSafe for HttpAnalysisResult
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