Struct k8s_openapi::api::core::v1::Handler [−][src]
pub struct Handler {
pub exec: Option<ExecAction>,
pub http_get: Option<HTTPGetAction>,
pub tcp_socket: Option<TCPSocketAction>,
}
Expand description
Handler defines a specific action that should be taken
Fields
exec: Option<ExecAction>
One and only one of the following should be specified. Exec specifies the action to take.
http_get: Option<HTTPGetAction>
HTTPGet specifies the http request to perform.
tcp_socket: Option<TCPSocketAction>
TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Handler
impl UnwindSafe for Handler
Blanket Implementations
Mutably borrows from an owned value. Read more