Struct matrix_sdk_base::ruma::events::room::message::FormattedBody
pub struct FormattedBody {
pub format: MessageFormat,
pub body: String,
}
Expand description
Common message event content fields for message types that have separate plain-text and formatted representations.
Fields§
§format: MessageFormat
The format used in the formatted_body
.
body: String
The formatted version of the body
.
Implementations§
§impl FormattedBody
impl FormattedBody
pub fn html(body: impl Into<String>) -> FormattedBody
pub fn html(body: impl Into<String>) -> FormattedBody
Creates a new HTML-formatted message body.
Trait Implementations§
§impl Clone for FormattedBody
impl Clone for FormattedBody
§fn clone(&self) -> FormattedBody
fn clone(&self) -> FormattedBody
Returns a copy 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 more§impl Debug for FormattedBody
impl Debug for FormattedBody
§impl<'de> Deserialize<'de> for FormattedBody
impl<'de> Deserialize<'de> for FormattedBody
§fn deserialize<__D>(
__deserializer: __D
) -> Result<FormattedBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<FormattedBody, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for FormattedBody
impl Serialize for FormattedBody
§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 RefUnwindSafe for FormattedBody
impl Send for FormattedBody
impl Sync for FormattedBody
impl Unpin for FormattedBody
impl UnwindSafe for FormattedBody
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