[][src]Struct google_clouddebugger2::FormatMessage

pub struct FormatMessage {
    pub parameters: Option<Vec<String>>,
    pub format: Option<String>,
}

Represents a message with parameters.

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

Fields

parameters: Option<Vec<String>>

Optional parameters to be embedded into the message.

format: Option<String>

Format template for the message. The format uses placeholders $0, $1, etc. to reference parameters. $$ can be used to denote the $ character.

Examples:

  • Failed to load '$0' which helps debug $1 the first time it is loaded. Again, $0 is very important.
  • Please pay $$10 to use $0 instead of $1.

Trait Implementations

impl Clone for FormatMessage[src]

impl Debug for FormatMessage[src]

impl Default for FormatMessage[src]

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

impl Part for FormatMessage[src]

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