Struct slack_morphism::api::SlackApiChatUnfurlRequest
source · pub struct SlackApiChatUnfurlRequest {
pub channel: SlackChannelId,
pub ts: SlackTs,
pub unfurls: HashMap<String, SlackApiChatUnfurlMapItem>,
pub user_auth_message: Option<String>,
pub user_auth_required: Option<bool>,
pub user_auth_url: Option<Url>,
}Fields§
§channel: SlackChannelId§ts: SlackTs§unfurls: HashMap<String, SlackApiChatUnfurlMapItem>§user_auth_message: Option<String>§user_auth_required: Option<bool>§user_auth_url: Option<Url>Implementations§
source§impl SlackApiChatUnfurlRequest
impl SlackApiChatUnfurlRequest
pub fn new(
channel: SlackChannelId,
ts: SlackTs,
unfurls: HashMap<String, SlackApiChatUnfurlMapItem>
) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn ts(&mut self, value: SlackTs) -> &mut Self
pub fn with_ts(self, value: SlackTs) -> Self
pub fn unfurls(
&mut self,
value: HashMap<String, SlackApiChatUnfurlMapItem>
) -> &mut Self
pub fn with_unfurls(
self,
value: HashMap<String, SlackApiChatUnfurlMapItem>
) -> Self
pub fn user_auth_message(&mut self, value: String) -> &mut Self
pub fn reset_user_auth_message(&mut self) -> &mut Self
pub fn mopt_user_auth_message(&mut self, value: Option<String>) -> &mut Self
pub fn with_user_auth_message(self, value: String) -> Self
pub fn without_user_auth_message(self) -> Self
pub fn opt_user_auth_message(self, value: Option<String>) -> Self
pub fn user_auth_required(&mut self, value: bool) -> &mut Self
pub fn reset_user_auth_required(&mut self) -> &mut Self
pub fn mopt_user_auth_required(&mut self, value: Option<bool>) -> &mut Self
pub fn with_user_auth_required(self, value: bool) -> Self
pub fn without_user_auth_required(self) -> Self
pub fn opt_user_auth_required(self, value: Option<bool>) -> Self
pub fn user_auth_url(&mut self, value: Url) -> &mut Self
pub fn reset_user_auth_url(&mut self) -> &mut Self
pub fn mopt_user_auth_url(&mut self, value: Option<Url>) -> &mut Self
pub fn with_user_auth_url(self, value: Url) -> Self
pub fn without_user_auth_url(self) -> Self
pub fn opt_user_auth_url(self, value: Option<Url>) -> Self
Trait Implementations§
source§impl Clone for SlackApiChatUnfurlRequest
impl Clone for SlackApiChatUnfurlRequest
source§fn clone(&self) -> SlackApiChatUnfurlRequest
fn clone(&self) -> SlackApiChatUnfurlRequest
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 SlackApiChatUnfurlRequest
impl Debug for SlackApiChatUnfurlRequest
source§impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequest
impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequest
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<SlackApiChatUnfurlRequestInit> for SlackApiChatUnfurlRequest
impl From<SlackApiChatUnfurlRequestInit> for SlackApiChatUnfurlRequest
source§fn from(value: SlackApiChatUnfurlRequestInit) -> Self
fn from(value: SlackApiChatUnfurlRequestInit) -> Self
Converts to this type from the input type.