Struct gapi_grpc::google::cloud::lifesciences::v2beta::ContainerStartedEvent[][src]

pub struct ContainerStartedEvent {
    pub action_id: i32,
    pub port_mappings: HashMap<i32, i32>,
    pub ip_address: String,
}

An event generated when a container starts.

Fields

action_id: i32

The numeric ID of the action that started this container.

port_mappings: HashMap<i32, i32>

The container-to-host port mappings installed for this container. This set will contain any ports exposed using the PUBLISH_EXPOSED_PORTS flag as well as any specified in the Action definition.

ip_address: String

The public IP address that can be used to connect to the container. This field is only populated when at least one port mapping is present. If the instance was created with a private address, this field will be empty even if port mappings exist.

Trait Implementations

impl Clone for ContainerStartedEvent[src]

impl Debug for ContainerStartedEvent[src]

impl Default for ContainerStartedEvent[src]

impl Message for ContainerStartedEvent[src]

impl PartialEq<ContainerStartedEvent> for ContainerStartedEvent[src]

impl StructuralPartialEq for ContainerStartedEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for ContainerStartedEvent

impl Send for ContainerStartedEvent

impl Sync for ContainerStartedEvent

impl Unpin for ContainerStartedEvent

impl UnwindSafe for ContainerStartedEvent

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]