#[non_exhaustive]pub struct TCPSocketAction {
pub port: i32,
/* private fields */
}Expand description
TCPSocketAction describes an action based on opening a socket
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 to access on the container. 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.
Implementations§
Trait Implementations§
Source§impl Clone for TCPSocketAction
impl Clone for TCPSocketAction
Source§fn clone(&self) -> TCPSocketAction
fn clone(&self) -> TCPSocketAction
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 TCPSocketAction
impl Debug for TCPSocketAction
Source§impl Default for TCPSocketAction
impl Default for TCPSocketAction
Source§fn default() -> TCPSocketAction
fn default() -> TCPSocketAction
Returns the “default value” for a type. Read more
Source§impl Message for TCPSocketAction
impl Message for TCPSocketAction
Source§impl PartialEq for TCPSocketAction
impl PartialEq for TCPSocketAction
impl StructuralPartialEq for TCPSocketAction
Auto Trait Implementations§
impl Freeze for TCPSocketAction
impl RefUnwindSafe for TCPSocketAction
impl Send for TCPSocketAction
impl Sync for TCPSocketAction
impl Unpin for TCPSocketAction
impl UnwindSafe for TCPSocketAction
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