pub struct RichTextEmailAddress {
pub text: Box<RichText>,
pub email_address: String,
}
Expand description
A rich text email link
Fields§
§text: Box<RichText>
Text
email_address: String
Email address
Trait Implementations§
Source§impl Clone for RichTextEmailAddress
impl Clone for RichTextEmailAddress
Source§fn clone(&self) -> RichTextEmailAddress
fn clone(&self) -> RichTextEmailAddress
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 RichTextEmailAddress
impl Debug for RichTextEmailAddress
Source§impl<'de> Deserialize<'de> for RichTextEmailAddress
impl<'de> Deserialize<'de> for RichTextEmailAddress
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 RichTextEmailAddress
impl RefUnwindSafe for RichTextEmailAddress
impl Send for RichTextEmailAddress
impl Sync for RichTextEmailAddress
impl Unpin for RichTextEmailAddress
impl UnwindSafe for RichTextEmailAddress
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