pub struct InboundMessage {
pub channel: String,
pub sender_id: String,
pub chat_id: String,
pub content: String,
pub timestamp: DateTime<Utc>,
pub media: Vec<String>,
pub metadata: HashMap<String, Value>,
}Expand description
Message received from a chat channel
Fields§
§channel: StringChannel identifier (e.g., “telegram”, “discord”)
sender_id: StringUser identifier
chat_id: StringChat/channel identifier
content: StringMessage text content
timestamp: DateTime<Utc>Message timestamp
media: Vec<String>Media URLs (if any)
metadata: HashMap<String, Value>Channel-specific metadata
Implementations§
Source§impl InboundMessage
impl InboundMessage
Sourcepub fn new(
channel: impl Into<String>,
sender_id: impl Into<String>,
chat_id: impl Into<String>,
content: impl Into<String>,
) -> Self
pub fn new( channel: impl Into<String>, sender_id: impl Into<String>, chat_id: impl Into<String>, content: impl Into<String>, ) -> Self
Create a new inbound message
Sourcepub fn session_key(&self) -> String
pub fn session_key(&self) -> String
Get the unique session key for this message
Sourcepub fn with_media(self, url: impl Into<String>) -> Self
pub fn with_media(self, url: impl Into<String>) -> Self
Add media URL to the message
Trait Implementations§
Source§impl Clone for InboundMessage
impl Clone for InboundMessage
Source§fn clone(&self) -> InboundMessage
fn clone(&self) -> InboundMessage
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 InboundMessage
impl Debug for InboundMessage
Source§impl<'de> Deserialize<'de> for InboundMessage
impl<'de> Deserialize<'de> for InboundMessage
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 InboundMessage
impl RefUnwindSafe for InboundMessage
impl Send for InboundMessage
impl Sync for InboundMessage
impl Unpin for InboundMessage
impl UnsafeUnpin for InboundMessage
impl UnwindSafe for InboundMessage
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