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.
impl StructuralPartialEq for SlackApiChatUnfurlRequest
Auto Trait Implementations§
impl Freeze for SlackApiChatUnfurlRequest
impl RefUnwindSafe for SlackApiChatUnfurlRequest
impl Send for SlackApiChatUnfurlRequest
impl Sync for SlackApiChatUnfurlRequest
impl Unpin for SlackApiChatUnfurlRequest
impl UnwindSafe for SlackApiChatUnfurlRequest
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
)