pub struct Message {
pub bot_id: Option<String>,
pub type_file: Option<String>,
pub text: Option<String>,
pub user: Option<String>,
pub username: Option<String>,
pub ts: Option<String>,
pub team: Option<String>,
pub attachments: Option<Vec<Attachment>>,
pub blocks: Option<Vec<Block>>,
pub subtype: Option<String>,
pub reactions: Option<Vec<Reaction>>,
}Fields§
§bot_id: Option<String>§type_file: Option<String>§text: Option<String>§user: Option<String>§username: Option<String>§ts: Option<String>§team: Option<String>§attachments: Option<Vec<Attachment>>§blocks: Option<Vec<Block>>§subtype: Option<String>§reactions: Option<Vec<Reaction>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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