pub struct SlackApiConversationsLeaveResponse {
pub not_in_channel: Option<bool>,
}
Fields§
§not_in_channel: Option<bool>
Implementations§
source§impl SlackApiConversationsLeaveResponse
impl SlackApiConversationsLeaveResponse
pub fn new() -> Self
pub fn not_in_channel(&mut self, value: bool) -> &mut Self
pub fn reset_not_in_channel(&mut self) -> &mut Self
pub fn mopt_not_in_channel(&mut self, value: Option<bool>) -> &mut Self
pub fn with_not_in_channel(self, value: bool) -> Self
pub fn without_not_in_channel(self) -> Self
pub fn opt_not_in_channel(self, value: Option<bool>) -> Self
Trait Implementations§
source§impl Clone for SlackApiConversationsLeaveResponse
impl Clone for SlackApiConversationsLeaveResponse
source§fn clone(&self) -> SlackApiConversationsLeaveResponse
fn clone(&self) -> SlackApiConversationsLeaveResponse
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 SlackApiConversationsLeaveResponse
impl<'de> Deserialize<'de> for SlackApiConversationsLeaveResponse
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<SlackApiConversationsLeaveResponseInit> for SlackApiConversationsLeaveResponse
impl From<SlackApiConversationsLeaveResponseInit> for SlackApiConversationsLeaveResponse
source§fn from(value: SlackApiConversationsLeaveResponseInit) -> Self
fn from(value: SlackApiConversationsLeaveResponseInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiConversationsLeaveResponse
impl PartialEq for SlackApiConversationsLeaveResponse
source§fn eq(&self, other: &SlackApiConversationsLeaveResponse) -> bool
fn eq(&self, other: &SlackApiConversationsLeaveResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackApiConversationsLeaveResponse
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiConversationsLeaveResponse
impl Send for SlackApiConversationsLeaveResponse
impl Sync for SlackApiConversationsLeaveResponse
impl Unpin for SlackApiConversationsLeaveResponse
impl UnwindSafe for SlackApiConversationsLeaveResponse
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