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

pub struct ContainerStoppedEvent {
    pub action_id: i32,
    pub exit_status: i32,
    pub stderr: String,
}

An event generated when a container exits.

Fields

action_id: i32

The numeric ID of the action that started this container.

exit_status: i32

The exit status of the container.

stderr: String

The tail end of any content written to standard error by the container. If the content emits large amounts of debugging noise or contains sensitive information, you can prevent the content from being printed by setting the DISABLE_STANDARD_ERROR_CAPTURE flag.

Note that only a small amount of the end of the stream is captured here. The entire stream is stored in the /google/logs directory mounted into each action, and can be copied off the machine as described elsewhere.

Trait Implementations

impl Clone for ContainerStoppedEvent[src]

impl Debug for ContainerStoppedEvent[src]

impl Default for ContainerStoppedEvent[src]

impl Message for ContainerStoppedEvent[src]

impl PartialEq<ContainerStoppedEvent> for ContainerStoppedEvent[src]

impl StructuralPartialEq for ContainerStoppedEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for ContainerStoppedEvent

impl Send for ContainerStoppedEvent

impl Sync for ContainerStoppedEvent

impl Unpin for ContainerStoppedEvent

impl UnwindSafe for ContainerStoppedEvent

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]