Struct google_clouddebugger2::FormatMessage[][src]

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

Optional parameters to be embedded into the message.

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 Default for FormatMessage
[src]

Returns the "default value" for a type. Read more

impl Clone for FormatMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FormatMessage
[src]

Formats the value using the given formatter. Read more

impl Part for FormatMessage
[src]

Auto Trait Implementations