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: SlackApiChatUnfurlSourceunfurl_id: SlackUnfurlIdunfurls: HashMap<String, SlackApiChatUnfurlMapItemV2>user_auth_message: Option<String>user_auth_required: Option<bool>user_auth_url: Option<Url>Implementations
sourceimpl 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
sourceimpl Clone for SlackApiChatUnfurlRequestV2
impl Clone for SlackApiChatUnfurlRequestV2
sourcefn clone(&self) -> SlackApiChatUnfurlRequestV2
fn clone(&self) -> SlackApiChatUnfurlRequestV2
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 more
sourceimpl Debug for SlackApiChatUnfurlRequestV2
impl Debug for SlackApiChatUnfurlRequestV2
sourceimpl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV2
impl<'de> Deserialize<'de> for SlackApiChatUnfurlRequestV2
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<SlackApiChatUnfurlRequestV2Init> for SlackApiChatUnfurlRequestV2
impl From<SlackApiChatUnfurlRequestV2Init> for SlackApiChatUnfurlRequestV2
sourcefn from(value: SlackApiChatUnfurlRequestV2Init) -> Self
fn from(value: SlackApiChatUnfurlRequestV2Init) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiChatUnfurlRequestV2> for SlackApiChatUnfurlRequestV2
impl PartialEq<SlackApiChatUnfurlRequestV2> for SlackApiChatUnfurlRequestV2
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &SlackApiChatUnfurlRequestV2) -> bool
fn ne(&self, other: &SlackApiChatUnfurlRequestV2) -> bool
This method tests for !=.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more