#[non_exhaustive]pub struct GRPCAction {
pub port: i32,
pub service: String,
/* private fields */
}Expand description
GRPCAction describes an action involving a GRPC port.
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.port: i32Optional. Port number of the gRPC service. Number must be in the range 1 to 65535. If not specified, defaults to the exposed port of the container, which is the value of container.ports[0].containerPort.
service: StringOptional. Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md ). If this is not specified, the default behavior is defined by gRPC.
Implementations§
Trait Implementations§
Source§impl Clone for GRPCAction
impl Clone for GRPCAction
Source§fn clone(&self) -> GRPCAction
fn clone(&self) -> GRPCAction
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 GRPCAction
impl Debug for GRPCAction
Source§impl Default for GRPCAction
impl Default for GRPCAction
Source§fn default() -> GRPCAction
fn default() -> GRPCAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for GRPCAction
impl PartialEq for GRPCAction
impl StructuralPartialEq for GRPCAction
Auto Trait Implementations§
impl Freeze for GRPCAction
impl RefUnwindSafe for GRPCAction
impl Send for GRPCAction
impl Sync for GRPCAction
impl Unpin for GRPCAction
impl UnwindSafe for GRPCAction
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