pub struct MessageBotMessage {
pub attachments: Option<Vec<MessageBotMessageAttachment>>,
pub bot_id: Option<String>,
pub channel: Option<String>,
pub icons: Option<MessageBotMessageIcons>,
pub subtype: Option<String>,
pub team: Option<String>,
pub text: Option<String>,
pub thread_ts: Option<Timestamp>,
pub ts: Option<Timestamp>,
pub ty: Option<String>,
pub username: Option<String>,
}
Fields§
§attachments: Option<Vec<MessageBotMessageAttachment>>
§bot_id: Option<String>
§channel: Option<String>
§icons: Option<MessageBotMessageIcons>
§subtype: Option<String>
§team: Option<String>
§text: Option<String>
§thread_ts: Option<Timestamp>
§ts: Option<Timestamp>
§ty: Option<String>
§username: Option<String>
Trait Implementations§
Source§impl Clone for MessageBotMessage
impl Clone for MessageBotMessage
Source§fn clone(&self) -> MessageBotMessage
fn clone(&self) -> MessageBotMessage
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 moreSource§impl Debug for MessageBotMessage
impl Debug for MessageBotMessage
Source§impl<'de> Deserialize<'de> for MessageBotMessage
impl<'de> Deserialize<'de> for MessageBotMessage
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 MessageBotMessage
impl RefUnwindSafe for MessageBotMessage
impl Send for MessageBotMessage
impl Sync for MessageBotMessage
impl Unpin for MessageBotMessage
impl UnwindSafe for MessageBotMessage
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