[][src]Struct slack_morphism::listener::SlackInteractionActionInfo

pub struct SlackInteractionActionInfo { /* fields omitted */ }

Implementations

impl SlackInteractionActionInfo[src]

pub fn new(
    action_type: SlackActionType,
    action_id: SlackActionId
) -> SlackInteractionActionInfo
[src]

pub fn action_type(
    &mut self,
    value: SlackActionType
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_action_type(
    self,
    value: SlackActionType
) -> SlackInteractionActionInfo
[src]

pub fn action_id(
    &mut self,
    value: SlackActionId
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_action_id(self, value: SlackActionId) -> SlackInteractionActionInfo[src]

pub fn block_id(
    &mut self,
    value: SlackBlockId
) -> &mut SlackInteractionActionInfo
[src]

pub fn reset_block_id(&mut self) -> &mut SlackInteractionActionInfo[src]

pub fn mopt_block_id(
    &mut self,
    value: Option<SlackBlockId>
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_block_id(self, value: SlackBlockId) -> SlackInteractionActionInfo[src]

pub fn without_block_id(self) -> SlackInteractionActionInfo[src]

pub fn opt_block_id(
    self,
    value: Option<SlackBlockId>
) -> SlackInteractionActionInfo
[src]

pub fn text(&mut self, value: SlackBlockText) -> &mut SlackInteractionActionInfo[src]

pub fn reset_text(&mut self) -> &mut SlackInteractionActionInfo[src]

pub fn mopt_text(
    &mut self,
    value: Option<SlackBlockText>
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_text(self, value: SlackBlockText) -> SlackInteractionActionInfo[src]

pub fn without_text(self) -> SlackInteractionActionInfo[src]

pub fn opt_text(
    self,
    value: Option<SlackBlockText>
) -> SlackInteractionActionInfo
[src]

pub fn value(&mut self, value: String) -> &mut SlackInteractionActionInfo[src]

pub fn reset_value(&mut self) -> &mut SlackInteractionActionInfo[src]

pub fn mopt_value(
    &mut self,
    value: Option<String>
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_value(self, value: String) -> SlackInteractionActionInfo[src]

pub fn without_value(self) -> SlackInteractionActionInfo[src]

pub fn opt_value(self, value: Option<String>) -> SlackInteractionActionInfo[src]

pub fn selected_option(
    &mut self,
    value: SlackBlockChoiceItem<SlackBlockText>
) -> &mut SlackInteractionActionInfo
[src]

pub fn reset_selected_option(&mut self) -> &mut SlackInteractionActionInfo[src]

pub fn mopt_selected_option(
    &mut self,
    value: Option<SlackBlockChoiceItem<SlackBlockText>>
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_selected_option(
    self,
    value: SlackBlockChoiceItem<SlackBlockText>
) -> SlackInteractionActionInfo
[src]

pub fn without_selected_option(self) -> SlackInteractionActionInfo[src]

pub fn opt_selected_option(
    self,
    value: Option<SlackBlockChoiceItem<SlackBlockText>>
) -> SlackInteractionActionInfo
[src]

pub fn action_ts(&mut self, value: SlackTs) -> &mut SlackInteractionActionInfo[src]

pub fn reset_action_ts(&mut self) -> &mut SlackInteractionActionInfo[src]

pub fn mopt_action_ts(
    &mut self,
    value: Option<SlackTs>
) -> &mut SlackInteractionActionInfo
[src]

pub fn with_action_ts(self, value: SlackTs) -> SlackInteractionActionInfo[src]

pub fn without_action_ts(self) -> SlackInteractionActionInfo[src]

pub fn opt_action_ts(self, value: Option<SlackTs>) -> SlackInteractionActionInfo[src]

Trait Implementations

impl Clone for SlackInteractionActionInfo[src]

impl Debug for SlackInteractionActionInfo[src]

impl<'de> Deserialize<'de> for SlackInteractionActionInfo[src]

impl From<SlackInteractionActionInfoInit> for SlackInteractionActionInfo[src]

impl PartialEq<SlackInteractionActionInfo> for SlackInteractionActionInfo[src]

impl Serialize for SlackInteractionActionInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.