#[non_exhaustive]pub struct NoticeMessageEventContent {
    pub body: String,
    pub formatted: Option<FormattedBody>,
}Available on crate feature 
events only.Expand description
The payload for a notice message.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.body: StringThe notice text.
formatted: Option<FormattedBody>Formatted form of the message body.
Implementations§
Source§impl NoticeMessageEventContent
 
impl NoticeMessageEventContent
Trait Implementations§
Source§impl Clone for NoticeMessageEventContent
 
impl Clone for NoticeMessageEventContent
Source§fn clone(&self) -> NoticeMessageEventContent
 
fn clone(&self) -> NoticeMessageEventContent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for NoticeMessageEventContent
 
impl Debug for NoticeMessageEventContent
Source§impl<'de> Deserialize<'de> for NoticeMessageEventContent
 
impl<'de> Deserialize<'de> for NoticeMessageEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<NoticeMessageEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<NoticeMessageEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NoticeMessageEventContent
 
impl Serialize for NoticeMessageEventContent
Source§fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NoticeMessageEventContent
impl RefUnwindSafe for NoticeMessageEventContent
impl Send for NoticeMessageEventContent
impl Sync for NoticeMessageEventContent
impl Unpin for NoticeMessageEventContent
impl UnwindSafe for NoticeMessageEventContent
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