pub struct SlackApiConversationsInviteRequest {
pub channel: SlackChannelId,
pub users: Vec<SlackUserId>,
}
Fields§
§channel: SlackChannelId
§users: Vec<SlackUserId>
Implementations§
source§impl SlackApiConversationsInviteRequest
impl SlackApiConversationsInviteRequest
pub fn new(channel: SlackChannelId, users: Vec<SlackUserId>) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn users(&mut self, value: Vec<SlackUserId>) -> &mut Self
pub fn with_users(self, value: Vec<SlackUserId>) -> Self
Trait Implementations§
source§impl Clone for SlackApiConversationsInviteRequest
impl Clone for SlackApiConversationsInviteRequest
source§fn clone(&self) -> SlackApiConversationsInviteRequest
fn clone(&self) -> SlackApiConversationsInviteRequest
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 SlackApiConversationsInviteRequest
impl<'de> Deserialize<'de> for SlackApiConversationsInviteRequest
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<SlackApiConversationsInviteRequestInit> for SlackApiConversationsInviteRequest
impl From<SlackApiConversationsInviteRequestInit> for SlackApiConversationsInviteRequest
source§fn from(value: SlackApiConversationsInviteRequestInit) -> Self
fn from(value: SlackApiConversationsInviteRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiConversationsInviteRequest
impl PartialEq for SlackApiConversationsInviteRequest
source§fn eq(&self, other: &SlackApiConversationsInviteRequest) -> bool
fn eq(&self, other: &SlackApiConversationsInviteRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiConversationsInviteRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiConversationsInviteRequest
impl Send for SlackApiConversationsInviteRequest
impl Sync for SlackApiConversationsInviteRequest
impl Unpin for SlackApiConversationsInviteRequest
impl UnwindSafe for SlackApiConversationsInviteRequest
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