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: SlackChannelIdts: SlackTsunfurls: HashMap<String, SlackApiChatUnfurlMapItem>user_auth_message: Option<String>user_auth_required: Option<bool>user_auth_url: Option<Url>Implementations
sourceimpl 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
sourceimpl Clone for SlackApiChatUnfurlRequest
impl Clone for SlackApiChatUnfurlRequest
sourcefn clone(&self) -> SlackApiChatUnfurlRequest
fn clone(&self) -> SlackApiChatUnfurlRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SlackApiChatUnfurlRequest
impl Debug for SlackApiChatUnfurlRequest
sourceimpl<'de> Deserialize<'de> for SlackApiChatUnfurlRequest
impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequest
sourcefn 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
sourceimpl From<SlackApiChatUnfurlRequestInit> for SlackApiChatUnfurlRequest
impl From<SlackApiChatUnfurlRequestInit> for SlackApiChatUnfurlRequest
sourcefn from(value: SlackApiChatUnfurlRequestInit) -> Self
fn from(value: SlackApiChatUnfurlRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiChatUnfurlRequest> for SlackApiChatUnfurlRequest
impl PartialEq<SlackApiChatUnfurlRequest> for SlackApiChatUnfurlRequest
sourcefn eq(&self, other: &SlackApiChatUnfurlRequest) -> bool
fn eq(&self, other: &SlackApiChatUnfurlRequest) -> bool
sourceimpl Serialize for SlackApiChatUnfurlRequest
impl Serialize for SlackApiChatUnfurlRequest
impl StructuralPartialEq for SlackApiChatUnfurlRequest
Auto Trait Implementations
impl RefUnwindSafe for SlackApiChatUnfurlRequest
impl Send for SlackApiChatUnfurlRequest
impl Sync for SlackApiChatUnfurlRequest
impl Unpin for SlackApiChatUnfurlRequest
impl UnwindSafe for SlackApiChatUnfurlRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more