[][src]Struct google_clouddebugger2::StatusMessage

pub struct StatusMessage {
    pub description: Option<FormatMessage>,
    pub refers_to: Option<String>,
    pub is_error: Option<bool>,
}

Represents a contextual status message. The message can indicate an error or informational status, and refer to specific parts of the containing object. For example, the Breakpoint.status field can indicate an error referring to the BREAKPOINT_SOURCE_LOCATION with the message Location not found.

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

Fields

description: Option<FormatMessage>

Status message text.

refers_to: Option<String>

Reference to which the message applies.

is_error: Option<bool>

Distinguishes errors from informational messages.

Trait Implementations

impl Clone for StatusMessage[src]

impl Debug for StatusMessage[src]

impl Default for StatusMessage[src]

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

impl Part for StatusMessage[src]

impl Serialize for StatusMessage[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