pub struct Message {
pub kind: MessageKind,
pub title: String,
pub content: String,
}Expand description
An informational display item - not an input.
Messages carry content to show the user without requiring input. They can appear alongside prompts (e.g., QR code + code input).
Fields§
§kind: MessageKindWhat kind of content this is.
title: StringShort title or heading.
content: StringThe content body (plain text, base64 image, JSON summary, etc.).
Implementations§
Source§impl Message
impl Message
Sourcepub fn info(title: impl Into<String>, content: impl Into<String>) -> Self
pub fn info(title: impl Into<String>, content: impl Into<String>) -> Self
Create an Info message.
Sourcepub fn qr_code(title: impl Into<String>, content: impl Into<String>) -> Self
pub fn qr_code(title: impl Into<String>, content: impl Into<String>) -> Self
Create a QrCode message.
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
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin 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