pub struct SlackApiChatPostMessageRequest {
pub channel: SlackChannelId,
pub content: SlackMessageContent,
pub as_user: Option<bool>,
pub icon_emoji: Option<String>,
pub icon_url: Option<String>,
pub link_names: Option<bool>,
pub parse: Option<String>,
pub thread_ts: Option<SlackTs>,
pub username: Option<String>,
pub reply_broadcast: Option<bool>,
pub unfurl_links: Option<bool>,
pub unfurl_media: Option<bool>,
}
Fields§
§channel: SlackChannelId
§content: SlackMessageContent
§as_user: Option<bool>
§icon_emoji: Option<String>
§icon_url: Option<String>
§link_names: Option<bool>
§parse: Option<String>
§thread_ts: Option<SlackTs>
§username: Option<String>
§reply_broadcast: Option<bool>
§unfurl_links: Option<bool>
§unfurl_media: Option<bool>
Implementations§
Source§impl SlackApiChatPostMessageRequest
impl SlackApiChatPostMessageRequest
pub fn new(channel: SlackChannelId, content: SlackMessageContent) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn content(&mut self, value: SlackMessageContent) -> &mut Self
pub fn with_content(self, value: SlackMessageContent) -> Self
pub fn as_user(&mut self, value: bool) -> &mut Self
pub fn reset_as_user(&mut self) -> &mut Self
pub fn mopt_as_user(&mut self, value: Option<bool>) -> &mut Self
pub fn with_as_user(self, value: bool) -> Self
pub fn without_as_user(self) -> Self
pub fn opt_as_user(self, value: Option<bool>) -> Self
pub fn icon_emoji(&mut self, value: String) -> &mut Self
pub fn reset_icon_emoji(&mut self) -> &mut Self
pub fn mopt_icon_emoji(&mut self, value: Option<String>) -> &mut Self
pub fn with_icon_emoji(self, value: String) -> Self
pub fn without_icon_emoji(self) -> Self
pub fn opt_icon_emoji(self, value: Option<String>) -> Self
pub fn icon_url(&mut self, value: String) -> &mut Self
pub fn reset_icon_url(&mut self) -> &mut Self
pub fn mopt_icon_url(&mut self, value: Option<String>) -> &mut Self
pub fn with_icon_url(self, value: String) -> Self
pub fn without_icon_url(self) -> Self
pub fn opt_icon_url(self, value: Option<String>) -> Self
pub fn link_names(&mut self, value: bool) -> &mut Self
pub fn reset_link_names(&mut self) -> &mut Self
pub fn mopt_link_names(&mut self, value: Option<bool>) -> &mut Self
pub fn with_link_names(self, value: bool) -> Self
pub fn without_link_names(self) -> Self
pub fn opt_link_names(self, value: Option<bool>) -> Self
pub fn parse(&mut self, value: String) -> &mut Self
pub fn reset_parse(&mut self) -> &mut Self
pub fn mopt_parse(&mut self, value: Option<String>) -> &mut Self
pub fn with_parse(self, value: String) -> Self
pub fn without_parse(self) -> Self
pub fn opt_parse(self, value: Option<String>) -> Self
pub fn thread_ts(&mut self, value: SlackTs) -> &mut Self
pub fn reset_thread_ts(&mut self) -> &mut Self
pub fn mopt_thread_ts(&mut self, value: Option<SlackTs>) -> &mut Self
pub fn with_thread_ts(self, value: SlackTs) -> Self
pub fn without_thread_ts(self) -> Self
pub fn opt_thread_ts(self, value: Option<SlackTs>) -> Self
pub fn username(&mut self, value: String) -> &mut Self
pub fn reset_username(&mut self) -> &mut Self
pub fn mopt_username(&mut self, value: Option<String>) -> &mut Self
pub fn with_username(self, value: String) -> Self
pub fn without_username(self) -> Self
pub fn opt_username(self, value: Option<String>) -> Self
pub fn reply_broadcast(&mut self, value: bool) -> &mut Self
pub fn reset_reply_broadcast(&mut self) -> &mut Self
pub fn mopt_reply_broadcast(&mut self, value: Option<bool>) -> &mut Self
pub fn with_reply_broadcast(self, value: bool) -> Self
pub fn without_reply_broadcast(self) -> Self
pub fn opt_reply_broadcast(self, value: Option<bool>) -> Self
pub fn unfurl_links(&mut self, value: bool) -> &mut Self
pub fn reset_unfurl_links(&mut self) -> &mut Self
pub fn mopt_unfurl_links(&mut self, value: Option<bool>) -> &mut Self
pub fn with_unfurl_links(self, value: bool) -> Self
pub fn without_unfurl_links(self) -> Self
pub fn opt_unfurl_links(self, value: Option<bool>) -> Self
pub fn unfurl_media(&mut self, value: bool) -> &mut Self
pub fn reset_unfurl_media(&mut self) -> &mut Self
pub fn mopt_unfurl_media(&mut self, value: Option<bool>) -> &mut Self
pub fn with_unfurl_media(self, value: bool) -> Self
pub fn without_unfurl_media(self) -> Self
pub fn opt_unfurl_media(self, value: Option<bool>) -> Self
Trait Implementations§
Source§impl Clone for SlackApiChatPostMessageRequest
impl Clone for SlackApiChatPostMessageRequest
Source§fn clone(&self) -> SlackApiChatPostMessageRequest
fn clone(&self) -> SlackApiChatPostMessageRequest
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<'de> Deserialize<'de> for SlackApiChatPostMessageRequest
impl<'de> Deserialize<'de> for SlackApiChatPostMessageRequest
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
Source§impl From<SlackApiChatPostMessageRequestInit> for SlackApiChatPostMessageRequest
impl From<SlackApiChatPostMessageRequestInit> for SlackApiChatPostMessageRequest
Source§fn from(value: SlackApiChatPostMessageRequestInit) -> Self
fn from(value: SlackApiChatPostMessageRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiChatPostMessageRequest
impl PartialEq for SlackApiChatPostMessageRequest
Source§fn eq(&self, other: &SlackApiChatPostMessageRequest) -> bool
fn eq(&self, other: &SlackApiChatPostMessageRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SlackApiChatPostMessageRequest
Auto Trait Implementations§
impl Freeze for SlackApiChatPostMessageRequest
impl RefUnwindSafe for SlackApiChatPostMessageRequest
impl Send for SlackApiChatPostMessageRequest
impl Sync for SlackApiChatPostMessageRequest
impl Unpin for SlackApiChatPostMessageRequest
impl UnwindSafe for SlackApiChatPostMessageRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)