pub struct SlackApiChatUnfurlRequestV3 {
pub id: SlackUnfurlRequestId,
pub unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>,
pub user_auth_message: Option<String>,
pub user_auth_required: Option<bool>,
pub user_auth_url: Option<Url>,
}Fields§
§id: SlackUnfurlRequestId§unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>§user_auth_message: Option<String>§user_auth_required: Option<bool>§user_auth_url: Option<Url>Implementations§
Source§impl SlackApiChatUnfurlRequestV3
impl SlackApiChatUnfurlRequestV3
pub fn new( id: SlackUnfurlRequestId, unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>, ) -> Self
pub fn id(&mut self, value: SlackUnfurlRequestId) -> &mut Self
pub fn with_id(self, value: SlackUnfurlRequestId) -> Self
pub fn unfurls( &mut self, value: HashMap<String, SlackApiChatUnfurlMapItemV2>, ) -> &mut Self
pub fn with_unfurls( self, value: HashMap<String, SlackApiChatUnfurlMapItemV2>, ) -> 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 SlackApiChatUnfurlRequestV3
impl Clone for SlackApiChatUnfurlRequestV3
Source§fn clone(&self) -> SlackApiChatUnfurlRequestV3
fn clone(&self) -> SlackApiChatUnfurlRequestV3
Returns a duplicate 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 SlackApiChatUnfurlRequestV3
impl Debug for SlackApiChatUnfurlRequestV3
Source§impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV3
impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV3
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<SlackApiChatUnfurlRequestV3Init> for SlackApiChatUnfurlRequestV3
impl From<SlackApiChatUnfurlRequestV3Init> for SlackApiChatUnfurlRequestV3
Source§fn from(value: SlackApiChatUnfurlRequestV3Init) -> Self
fn from(value: SlackApiChatUnfurlRequestV3Init) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for SlackApiChatUnfurlRequestV3
Auto Trait Implementations§
impl Freeze for SlackApiChatUnfurlRequestV3
impl RefUnwindSafe for SlackApiChatUnfurlRequestV3
impl Send for SlackApiChatUnfurlRequestV3
impl Sync for SlackApiChatUnfurlRequestV3
impl Unpin for SlackApiChatUnfurlRequestV3
impl UnwindSafe for SlackApiChatUnfurlRequestV3
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