Struct aws_sdk_securityhub::model::NetworkHeader
source · [−]#[non_exhaustive]pub struct NetworkHeader {
pub protocol: Option<String>,
pub destination: Option<NetworkPathComponentDetails>,
pub source: Option<NetworkPathComponentDetails>,
}
Expand description
Details about a network path component that occurs before or after the current component.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.protocol: Option<String>
The protocol used for the component.
destination: Option<NetworkPathComponentDetails>
Information about the destination of the component.
source: Option<NetworkPathComponentDetails>
Information about the origin of the component.
Implementations
Information about the destination of the component.
Information about the origin of the component.
Creates a new builder-style object to manufacture NetworkHeader
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for NetworkHeader
impl Send for NetworkHeader
impl Sync for NetworkHeader
impl Unpin for NetworkHeader
impl UnwindSafe for NetworkHeader
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more