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>>,
}
Expand description
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§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more