pub struct DecryptedMessage {
pub id: String,
pub room_id: String,
pub person_id: String,
pub person_email: String,
pub text: String,
pub html: Option<String>,
pub created: String,
pub room_type: Option<String>,
pub raw: MercuryActivity,
}Expand description
A decrypted Webex message.
Fields§
§id: StringUnique message ID.
room_id: StringConversation/space ID.
person_id: StringSender’s user ID.
person_email: StringSender’s email address.
text: StringDecrypted plain text.
html: Option<String>Decrypted HTML content (rich text messages).
created: StringISO 8601 timestamp.
room_type: Option<String>“direct”, “group”, or None.
raw: MercuryActivityFull decrypted activity for advanced use.
Trait Implementations§
Source§impl Clone for DecryptedMessage
impl Clone for DecryptedMessage
Source§fn clone(&self) -> DecryptedMessage
fn clone(&self) -> DecryptedMessage
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 moreAuto Trait Implementations§
impl Freeze for DecryptedMessage
impl RefUnwindSafe for DecryptedMessage
impl Send for DecryptedMessage
impl Sync for DecryptedMessage
impl Unpin for DecryptedMessage
impl UnsafeUnpin for DecryptedMessage
impl UnwindSafe for DecryptedMessage
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