Struct debugserver_types::Message
[−]
[src]
pub struct Message {
pub format: String,
pub id: i64,
pub send_telemetry: Option<bool>,
pub show_user: Option<bool>,
pub url: Option<String>,
pub url_label: Option<String>,
pub variables: Option<BTreeMap<String, String>>,
}A structured message object. Used to return errors from requests.
Fields
format: String
A format string for the message. Embedded variables have the form '{name}'. If variable name starts with an underscore character, the variable does not contain user data (PII) and can be safely used for telemetry purposes.
id: i64
Unique identifier for the message.
send_telemetry: Option<bool>
If true send to telemetry.
show_user: Option<bool>
If true show user.
url: Option<String>
An optional url where additional information about this message can be found.
url_label: Option<String>
An optional label that is presented to the user as the UI for opening the url.
variables: Option<BTreeMap<String, String>>
An object used as a dictionary for looking up the variables in the format string.
Trait Implementations
impl Clone for Message[src]
fn clone(&self) -> Message[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for Message[src]
fn eq(&self, __arg_0: &Message) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Message) -> bool[src]
This method tests for !=.