pub struct ExtendedUrl {
pub direction: u32,
pub url: String,
pub host: String,
}Expand description
Extended URL Data - Format (0,1005)
HTTP request information
§XDR Definition (sFlow v5)
/* Extended URL Data */
/* opaque = flow_data; enterprise = 0; format = 1005 */
struct extended_url {
url_direction direction; /* Direction of connection */
string url<>; /* The HTTP request-line (see RFC 2616) */
string host<>; /* The host field from the HTTP header */
}Fields§
§direction: u32Direction (source or destination)
url: StringURL string (HTTP request-line)
host: StringHost header from HTTP request
Trait Implementations§
Source§impl Clone for ExtendedUrl
impl Clone for ExtendedUrl
Source§fn clone(&self) -> ExtendedUrl
fn clone(&self) -> ExtendedUrl
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtendedUrl
impl Debug for ExtendedUrl
Source§impl PartialEq for ExtendedUrl
impl PartialEq for ExtendedUrl
impl Eq for ExtendedUrl
impl StructuralPartialEq for ExtendedUrl
Auto Trait Implementations§
impl Freeze for ExtendedUrl
impl RefUnwindSafe for ExtendedUrl
impl Send for ExtendedUrl
impl Sync for ExtendedUrl
impl Unpin for ExtendedUrl
impl UnwindSafe for ExtendedUrl
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