Struct slack_morphism::api::SlackOAuthIncomingWebHook
source · [−]pub struct SlackOAuthIncomingWebHook {
pub channel: String,
pub channel_id: SlackChannelId,
pub configuration_url: Url,
pub url: Url,
}Fields
channel: Stringchannel_id: SlackChannelIdconfiguration_url: Urlurl: UrlImplementations
sourceimpl SlackOAuthIncomingWebHook
impl SlackOAuthIncomingWebHook
pub fn new(
channel: String,
channel_id: SlackChannelId,
configuration_url: Url,
url: Url
) -> Self
pub fn channel(&mut self, value: String) -> &mut Self
pub fn with_channel(self, value: String) -> Self
pub fn channel_id(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel_id(self, value: SlackChannelId) -> Self
pub fn configuration_url(&mut self, value: Url) -> &mut Self
pub fn with_configuration_url(self, value: Url) -> Self
pub fn url(&mut self, value: Url) -> &mut Self
pub fn with_url(self, value: Url) -> Self
Trait Implementations
sourceimpl Clone for SlackOAuthIncomingWebHook
impl Clone for SlackOAuthIncomingWebHook
sourcefn clone(&self) -> SlackOAuthIncomingWebHook
fn clone(&self) -> SlackOAuthIncomingWebHook
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 SlackOAuthIncomingWebHook
impl Debug for SlackOAuthIncomingWebHook
sourceimpl<'de> Deserialize<'de> for SlackOAuthIncomingWebHook
impl<'de> Deserialize<'de> for SlackOAuthIncomingWebHook
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<SlackOAuthIncomingWebHookInit> for SlackOAuthIncomingWebHook
impl From<SlackOAuthIncomingWebHookInit> for SlackOAuthIncomingWebHook
sourcefn from(value: SlackOAuthIncomingWebHookInit) -> Self
fn from(value: SlackOAuthIncomingWebHookInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackOAuthIncomingWebHook> for SlackOAuthIncomingWebHook
impl PartialEq<SlackOAuthIncomingWebHook> for SlackOAuthIncomingWebHook
sourcefn eq(&self, other: &SlackOAuthIncomingWebHook) -> bool
fn eq(&self, other: &SlackOAuthIncomingWebHook) -> bool
sourceimpl Serialize for SlackOAuthIncomingWebHook
impl Serialize for SlackOAuthIncomingWebHook
impl StructuralPartialEq for SlackOAuthIncomingWebHook
Auto Trait Implementations
impl RefUnwindSafe for SlackOAuthIncomingWebHook
impl Send for SlackOAuthIncomingWebHook
impl Sync for SlackOAuthIncomingWebHook
impl Unpin for SlackOAuthIncomingWebHook
impl UnwindSafe for SlackOAuthIncomingWebHook
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