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
sourceimpl 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
sourceimpl Clone for SlackApiConversationsOpenRequest
impl Clone for SlackApiConversationsOpenRequest
sourcefn clone(&self) -> SlackApiConversationsOpenRequest
fn clone(&self) -> SlackApiConversationsOpenRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'de> Deserialize<'de> for SlackApiConversationsOpenRequest
impl<'de> Deserialize<'de> for SlackApiConversationsOpenRequest
sourcefn 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
sourceimpl From<SlackApiConversationsOpenRequestInit> for SlackApiConversationsOpenRequest
impl From<SlackApiConversationsOpenRequestInit> for SlackApiConversationsOpenRequest
sourcefn from(value: SlackApiConversationsOpenRequestInit) -> Self
fn from(value: SlackApiConversationsOpenRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiConversationsOpenRequest> for SlackApiConversationsOpenRequest
impl PartialEq<SlackApiConversationsOpenRequest> for SlackApiConversationsOpenRequest
sourcefn eq(&self, other: &SlackApiConversationsOpenRequest) -> bool
fn eq(&self, other: &SlackApiConversationsOpenRequest) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more