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
pub fn with_return_im(self, value: bool) -> Self
pub fn without_return_im(self) -> Self
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.
source§impl PartialEq for SlackApiConversationsOpenRequest
impl PartialEq for SlackApiConversationsOpenRequest
source§fn eq(&self, other: &SlackApiConversationsOpenRequest) -> bool
fn eq(&self, other: &SlackApiConversationsOpenRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiConversationsOpenRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiConversationsOpenRequest
impl Send for SlackApiConversationsOpenRequest
impl Sync for SlackApiConversationsOpenRequest
impl Unpin for SlackApiConversationsOpenRequest
impl UnwindSafe for SlackApiConversationsOpenRequest
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