Struct slack_morphism::api::SlackApiChatUnfurlRequestV2
source · pub struct SlackApiChatUnfurlRequestV2 {
pub source: SlackApiChatUnfurlSource,
pub unfurl_id: SlackUnfurlId,
pub unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>,
pub user_auth_message: Option<String>,
pub user_auth_required: Option<bool>,
pub user_auth_url: Option<Url>,
}
Fields§
§source: SlackApiChatUnfurlSource
§unfurl_id: SlackUnfurlId
§unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>
§user_auth_message: Option<String>
§user_auth_required: Option<bool>
§user_auth_url: Option<Url>
Implementations§
source§impl SlackApiChatUnfurlRequestV2
impl SlackApiChatUnfurlRequestV2
pub fn new( source: SlackApiChatUnfurlSource, unfurl_id: SlackUnfurlId, unfurls: HashMap<String, SlackApiChatUnfurlMapItemV2> ) -> Self
pub fn source(&mut self, value: SlackApiChatUnfurlSource) -> &mut Self
pub fn with_source(self, value: SlackApiChatUnfurlSource) -> Self
pub fn unfurl_id(&mut self, value: SlackUnfurlId) -> &mut Self
pub fn with_unfurl_id(self, value: SlackUnfurlId) -> 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 SlackApiChatUnfurlRequestV2
impl Clone for SlackApiChatUnfurlRequestV2
source§fn clone(&self) -> SlackApiChatUnfurlRequestV2
fn clone(&self) -> SlackApiChatUnfurlRequestV2
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 SlackApiChatUnfurlRequestV2
impl Debug for SlackApiChatUnfurlRequestV2
source§impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV2
impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV2
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<SlackApiChatUnfurlRequestV2Init> for SlackApiChatUnfurlRequestV2
impl From<SlackApiChatUnfurlRequestV2Init> for SlackApiChatUnfurlRequestV2
source§fn from(value: SlackApiChatUnfurlRequestV2Init) -> Self
fn from(value: SlackApiChatUnfurlRequestV2Init) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiChatUnfurlRequestV2
impl PartialEq for SlackApiChatUnfurlRequestV2
source§fn eq(&self, other: &SlackApiChatUnfurlRequestV2) -> bool
fn eq(&self, other: &SlackApiChatUnfurlRequestV2) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiChatUnfurlRequestV2
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiChatUnfurlRequestV2
impl Send for SlackApiChatUnfurlRequestV2
impl Sync for SlackApiChatUnfurlRequestV2
impl Unpin for SlackApiChatUnfurlRequestV2
impl UnwindSafe for SlackApiChatUnfurlRequestV2
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