Struct slack_morphism::api::SlackApiChatDeleteRequest
source · pub struct SlackApiChatDeleteRequest {
pub channel: SlackChannelId,
pub ts: SlackTs,
pub as_user: Option<bool>,
}Fields
channel: SlackChannelIdts: SlackTsas_user: Option<bool>Implementations
sourceimpl SlackApiChatDeleteRequest
impl SlackApiChatDeleteRequest
pub fn new(channel: SlackChannelId, ts: SlackTs) -> 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 as_user(&mut self, value: bool) -> &mut Self
pub fn reset_as_user(&mut self) -> &mut Self
pub fn mopt_as_user(&mut self, value: Option<bool>) -> &mut Self
pub fn with_as_user(self, value: bool) -> Self
pub fn without_as_user(self) -> Self
pub fn opt_as_user(self, value: Option<bool>) -> Self
Trait Implementations
sourceimpl Clone for SlackApiChatDeleteRequest
impl Clone for SlackApiChatDeleteRequest
sourcefn clone(&self) -> SlackApiChatDeleteRequest
fn clone(&self) -> SlackApiChatDeleteRequest
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 SlackApiChatDeleteRequest
impl Debug for SlackApiChatDeleteRequest
sourceimpl<'de> Deserialize<'de> for SlackApiChatDeleteRequest
impl<'de> Deserialize<'de> for SlackApiChatDeleteRequest
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<SlackApiChatDeleteRequestInit> for SlackApiChatDeleteRequest
impl From<SlackApiChatDeleteRequestInit> for SlackApiChatDeleteRequest
sourcefn from(value: SlackApiChatDeleteRequestInit) -> Self
fn from(value: SlackApiChatDeleteRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiChatDeleteRequest> for SlackApiChatDeleteRequest
impl PartialEq<SlackApiChatDeleteRequest> for SlackApiChatDeleteRequest
sourcefn eq(&self, other: &SlackApiChatDeleteRequest) -> bool
fn eq(&self, other: &SlackApiChatDeleteRequest) -> bool
sourceimpl Serialize for SlackApiChatDeleteRequest
impl Serialize for SlackApiChatDeleteRequest
impl StructuralPartialEq for SlackApiChatDeleteRequest
Auto Trait Implementations
impl RefUnwindSafe for SlackApiChatDeleteRequest
impl Send for SlackApiChatDeleteRequest
impl Sync for SlackApiChatDeleteRequest
impl Unpin for SlackApiChatDeleteRequest
impl UnwindSafe for SlackApiChatDeleteRequest
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