[][src]Struct google_run1::ContainerPort

pub struct ContainerPort {
    pub protocol: Option<String>,
    pub container_port: Option<i32>,
    pub name: Option<String>,
}

ContainerPort represents a network port in a single container.

This type is not used in any activity, and only used as part of another schema.

Fields

protocol: Option<String>

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

Protocol for port. Must be "TCP". Defaults to "TCP".

container_port: Option<i32>

(Optional)

Port number the container listens on. This must be a valid port number, 0 < x < 65536.

name: Option<String>

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

If specified, used to specify which protocol to use. Allowed values are "http1" and "h2c".

Trait Implementations

impl Clone for ContainerPort[src]

impl Debug for ContainerPort[src]

impl Default for ContainerPort[src]

impl<'de> Deserialize<'de> for ContainerPort[src]

impl Part for ContainerPort[src]

impl Serialize for ContainerPort[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any