pub struct SlackApiConversationsOpenRequest {
pub channel: Option<SlackChannelId>,
pub return_im: Option<bool>,
pub users: Option<Vec<SlackUserId>>,
}Fields§
§channel: Option<SlackChannelId>§return_im: Option<bool>§users: Option<Vec<SlackUserId>>Implementations§
source§impl SlackApiConversationsOpenRequest
impl SlackApiConversationsOpenRequest
pub fn new() -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn reset_channel(&mut self) -> &mut Self
pub fn mopt_channel(&mut self, value: Option<SlackChannelId>) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn without_channel(self) -> Self
pub fn opt_channel(self, value: Option<SlackChannelId>) -> Self
pub fn return_im(&mut self, value: bool) -> &mut Self
pub fn reset_return_im(&mut self) -> &mut Self
pub fn mopt_return_im(&mut self, value: Option<bool>) -> &mut Self
sourcepub fn with_return_im(self, value: bool) -> Self
pub fn with_return_im(self, value: bool) -> Self
Examples found in repository?
src/api/conversations.rs (line 248)
241 242 243 244 245 246 247 248 249 250 251 252
pub async fn conversations_open_full(
&self,
req: &SlackApiConversationsOpenRequest,
) -> ClientResult<SlackApiConversationsOpenResponse<SlackChannelInfo>> {
self.http_session_api
.http_post(
"conversations.open",
&req.clone().with_return_im(true),
Some(&SLACK_TIER3_METHOD_CONFIG),
)
.await
}sourcepub fn without_return_im(self) -> Self
pub fn without_return_im(self) -> Self
Examples found in repository?
src/api/conversations.rs (line 231)
224 225 226 227 228 229 230 231 232 233 234 235
pub async fn conversations_open(
&self,
req: &SlackApiConversationsOpenRequest,
) -> ClientResult<SlackApiConversationsOpenResponse<SlackBasicChannelInfo>> {
self.http_session_api
.http_post(
"conversations.open",
&req.clone().without_return_im(),
Some(&SLACK_TIER3_METHOD_CONFIG),
)
.await
}pub fn opt_return_im(self, value: Option<bool>) -> Self
pub fn users(&mut self, value: Vec<SlackUserId>) -> &mut Self
pub fn reset_users(&mut self) -> &mut Self
pub fn mopt_users(&mut self, value: Option<Vec<SlackUserId>>) -> &mut Self
pub fn with_users(self, value: Vec<SlackUserId>) -> Self
pub fn without_users(self) -> Self
pub fn opt_users(self, value: Option<Vec<SlackUserId>>) -> Self
Trait Implementations§
source§impl Clone for SlackApiConversationsOpenRequest
impl Clone for SlackApiConversationsOpenRequest
source§fn clone(&self) -> SlackApiConversationsOpenRequest
fn clone(&self) -> SlackApiConversationsOpenRequest
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<'de> Deserialize<'de> for SlackApiConversationsOpenRequest
impl<'de> Deserialize<'de> for SlackApiConversationsOpenRequest
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<SlackApiConversationsOpenRequestInit> for SlackApiConversationsOpenRequest
impl From<SlackApiConversationsOpenRequestInit> for SlackApiConversationsOpenRequest
source§fn from(value: SlackApiConversationsOpenRequestInit) -> Self
fn from(value: SlackApiConversationsOpenRequestInit) -> Self
Converts to this type from the input type.