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
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SlackApiConversationsOpenRequest
Auto Trait Implementations§
impl Freeze for SlackApiConversationsOpenRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)