pub struct SlackBlockMultiChannelsSelectElement {
pub action_id: SlackActionId,
pub placeholder: SlackBlockPlainTextOnly,
pub initial_channels: Option<Vec<SlackChannelId, Global>>,
pub confirm: Option<SlackBlockConfirmItem>,
pub max_selected_items: Option<u64>,
}Fields
action_id: SlackActionIdplaceholder: SlackBlockPlainTextOnlyinitial_channels: Option<Vec<SlackChannelId, Global>>confirm: Option<SlackBlockConfirmItem>max_selected_items: Option<u64>Implementations
sourceimpl SlackBlockMultiChannelsSelectElement
impl SlackBlockMultiChannelsSelectElement
pub fn new(
action_id: SlackActionId,
placeholder: SlackBlockPlainTextOnly
) -> SlackBlockMultiChannelsSelectElement
pub fn action_id(
&mut self,
value: SlackActionId
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn with_action_id(
self,
value: SlackActionId
) -> SlackBlockMultiChannelsSelectElement
pub fn placeholder(
&mut self,
value: SlackBlockPlainTextOnly
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn with_placeholder(
self,
value: SlackBlockPlainTextOnly
) -> SlackBlockMultiChannelsSelectElement
pub fn initial_channels(
&mut self,
value: Vec<SlackChannelId, Global>
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn reset_initial_channels(
&mut self
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn mopt_initial_channels(
&mut self,
value: Option<Vec<SlackChannelId, Global>>
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn with_initial_channels(
self,
value: Vec<SlackChannelId, Global>
) -> SlackBlockMultiChannelsSelectElement
pub fn without_initial_channels(self) -> SlackBlockMultiChannelsSelectElement
pub fn opt_initial_channels(
self,
value: Option<Vec<SlackChannelId, Global>>
) -> SlackBlockMultiChannelsSelectElement
pub fn confirm(
&mut self,
value: SlackBlockConfirmItem
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn reset_confirm(&mut self) -> &mut SlackBlockMultiChannelsSelectElement
pub fn mopt_confirm(
&mut self,
value: Option<SlackBlockConfirmItem>
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn with_confirm(
self,
value: SlackBlockConfirmItem
) -> SlackBlockMultiChannelsSelectElement
pub fn without_confirm(self) -> SlackBlockMultiChannelsSelectElement
pub fn opt_confirm(
self,
value: Option<SlackBlockConfirmItem>
) -> SlackBlockMultiChannelsSelectElement
pub fn max_selected_items(
&mut self,
value: u64
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn reset_max_selected_items(
&mut self
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn mopt_max_selected_items(
&mut self,
value: Option<u64>
) -> &mut SlackBlockMultiChannelsSelectElement
pub fn with_max_selected_items(
self,
value: u64
) -> SlackBlockMultiChannelsSelectElement
pub fn without_max_selected_items(self) -> SlackBlockMultiChannelsSelectElement
pub fn opt_max_selected_items(
self,
value: Option<u64>
) -> SlackBlockMultiChannelsSelectElement
Trait Implementations
sourceimpl Clone for SlackBlockMultiChannelsSelectElement
impl Clone for SlackBlockMultiChannelsSelectElement
sourcepub fn clone(&self) -> SlackBlockMultiChannelsSelectElement
pub fn clone(&self) -> SlackBlockMultiChannelsSelectElement
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 more
sourceimpl<'de> Deserialize<'de> for SlackBlockMultiChannelsSelectElement
impl<'de> Deserialize<'de> for SlackBlockMultiChannelsSelectElement
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<SlackBlockMultiChannelsSelectElement, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SlackBlockMultiChannelsSelectElement, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<SlackBlockMultiChannelsSelectElement> for SlackSectionBlockElement
impl From<SlackBlockMultiChannelsSelectElement> for SlackSectionBlockElement
sourcepub fn from(
element: SlackBlockMultiChannelsSelectElement
) -> SlackSectionBlockElement
pub fn from(
element: SlackBlockMultiChannelsSelectElement
) -> SlackSectionBlockElement
Performs the conversion.
sourceimpl From<SlackBlockMultiChannelsSelectElement> for SlackInputBlockElement
impl From<SlackBlockMultiChannelsSelectElement> for SlackInputBlockElement
sourcepub fn from(
element: SlackBlockMultiChannelsSelectElement
) -> SlackInputBlockElement
pub fn from(
element: SlackBlockMultiChannelsSelectElement
) -> SlackInputBlockElement
Performs the conversion.
sourceimpl From<SlackBlockMultiChannelsSelectElementInit> for SlackBlockMultiChannelsSelectElement
impl From<SlackBlockMultiChannelsSelectElementInit> for SlackBlockMultiChannelsSelectElement
sourcepub fn from(
value: SlackBlockMultiChannelsSelectElementInit
) -> SlackBlockMultiChannelsSelectElement
pub fn from(
value: SlackBlockMultiChannelsSelectElementInit
) -> SlackBlockMultiChannelsSelectElement
Performs the conversion.
sourceimpl PartialEq<SlackBlockMultiChannelsSelectElement> for SlackBlockMultiChannelsSelectElement
impl PartialEq<SlackBlockMultiChannelsSelectElement> for SlackBlockMultiChannelsSelectElement
sourcepub fn eq(&self, other: &SlackBlockMultiChannelsSelectElement) -> bool
pub fn eq(&self, other: &SlackBlockMultiChannelsSelectElement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcepub fn ne(&self, other: &SlackBlockMultiChannelsSelectElement) -> bool
pub fn ne(&self, other: &SlackBlockMultiChannelsSelectElement) -> bool
This method tests for !=.
sourceimpl Serialize for SlackBlockMultiChannelsSelectElement
impl Serialize for SlackBlockMultiChannelsSelectElement
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SlackBlockMultiChannelsSelectElement
Auto Trait Implementations
impl RefUnwindSafe for SlackBlockMultiChannelsSelectElement
impl Send for SlackBlockMultiChannelsSelectElement
impl Sync for SlackBlockMultiChannelsSelectElement
impl Unpin for SlackBlockMultiChannelsSelectElement
impl UnwindSafe for SlackBlockMultiChannelsSelectElement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more