pub struct RawMessageSettings<'a> {
pub recipient: Jid,
pub message_type: MessageType,
pub message: &'a str,
pub lang: Option<&'a str>,
pub payloads: Vec<Element>,
}
Fields§
§recipient: Jid
§message_type: MessageType
§message: &'a str
§lang: Option<&'a str>
§payloads: Vec<Element>
Implementations§
Source§impl<'a> RawMessageSettings<'a>
impl<'a> RawMessageSettings<'a>
pub fn new(recipient: Jid, message_type: MessageType, message: &'a str) -> Self
pub fn with_lang(self, lang: &'a str) -> Self
pub fn with_lang_option(self, lang: Option<&'a str>) -> Self
pub fn with_payload(self, payload: impl MessagePayload) -> Self
Trait Implementations§
Source§impl<'a> Clone for RawMessageSettings<'a>
impl<'a> Clone for RawMessageSettings<'a>
Source§fn clone(&self) -> RawMessageSettings<'a>
fn clone(&self) -> RawMessageSettings<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for RawMessageSettings<'a>
impl<'a> RefUnwindSafe for RawMessageSettings<'a>
impl<'a> Send for RawMessageSettings<'a>
impl<'a> Sync for RawMessageSettings<'a>
impl<'a> Unpin for RawMessageSettings<'a>
impl<'a> UnwindSafe for RawMessageSettings<'a>
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