Struct slack_morphism::api::SlackApiChatUpdateRequest
source · pub struct SlackApiChatUpdateRequest {
pub channel: SlackChannelId,
pub content: SlackMessageContent,
pub ts: SlackTs,
pub as_user: Option<bool>,
pub link_names: Option<bool>,
pub parse: Option<String>,
}
Fields§
§channel: SlackChannelId
§content: SlackMessageContent
§ts: SlackTs
§as_user: Option<bool>
§link_names: Option<bool>
§parse: Option<String>
Implementations§
source§impl SlackApiChatUpdateRequest
impl SlackApiChatUpdateRequest
pub fn new( channel: SlackChannelId, content: SlackMessageContent, ts: SlackTs ) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn content(&mut self, value: SlackMessageContent) -> &mut Self
pub fn with_content(self, value: SlackMessageContent) -> 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
pub fn link_names(&mut self, value: bool) -> &mut Self
pub fn reset_link_names(&mut self) -> &mut Self
pub fn mopt_link_names(&mut self, value: Option<bool>) -> &mut Self
pub fn with_link_names(self, value: bool) -> Self
pub fn without_link_names(self) -> Self
pub fn opt_link_names(self, value: Option<bool>) -> Self
pub fn parse(&mut self, value: String) -> &mut Self
pub fn reset_parse(&mut self) -> &mut Self
pub fn mopt_parse(&mut self, value: Option<String>) -> &mut Self
pub fn with_parse(self, value: String) -> Self
pub fn without_parse(self) -> Self
pub fn opt_parse(self, value: Option<String>) -> Self
Trait Implementations§
source§impl Clone for SlackApiChatUpdateRequest
impl Clone for SlackApiChatUpdateRequest
source§fn clone(&self) -> SlackApiChatUpdateRequest
fn clone(&self) -> SlackApiChatUpdateRequest
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 SlackApiChatUpdateRequest
impl Debug for SlackApiChatUpdateRequest
source§impl<'de> Deserialize<'de> for SlackApiChatUpdateRequest
impl<'de> Deserialize<'de> for SlackApiChatUpdateRequest
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<SlackApiChatUpdateRequestInit> for SlackApiChatUpdateRequest
impl From<SlackApiChatUpdateRequestInit> for SlackApiChatUpdateRequest
source§fn from(value: SlackApiChatUpdateRequestInit) -> Self
fn from(value: SlackApiChatUpdateRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiChatUpdateRequest
impl PartialEq for SlackApiChatUpdateRequest
source§fn eq(&self, other: &SlackApiChatUpdateRequest) -> bool
fn eq(&self, other: &SlackApiChatUpdateRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiChatUpdateRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiChatUpdateRequest
impl Send for SlackApiChatUpdateRequest
impl Sync for SlackApiChatUpdateRequest
impl Unpin for SlackApiChatUpdateRequest
impl UnwindSafe for SlackApiChatUpdateRequest
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