[][src]Struct slack_morphism_hyper::listener::SlackClientEventsHyperListener

pub struct SlackClientEventsHyperListener {
    pub environment: SlackClientEventsListenerEnvironment<SlackClientHyperConnector>,
}

Fields

environment: SlackClientEventsListenerEnvironment<SlackClientHyperConnector>

Implementations

impl SlackClientEventsHyperListener[src]

pub fn command_events_service_fn<'a, D, F, I, IF>(
    &self,
    config: Arc<SlackCommandEventsListenerConfig>,
    command_service_fn: I
) -> impl Fn(Request<Body>, D) -> BoxFuture<'a, Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send + Clone where
    D: Fn(Request<Body>) -> F + 'a + Send + Sync + Clone,
    F: Future<Output = Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send,
    I: Fn(SlackCommandEvent, Arc<SlackClient<SlackClientHyperConnector>>) -> IF + 'static + Send + Sync + Clone,
    IF: Future<Output = Result<SlackCommandEventResponse, Box<dyn Error + Send + Sync + 'static>>> + 'static + Send
[src]

impl SlackClientEventsHyperListener[src]

pub fn interaction_events_service_fn<'a, D, F, I, IF>(
    &self,
    config: Arc<SlackInteractionEventsListenerConfig>,
    interaction_service_fn: I
) -> impl Fn(Request<Body>, D) -> BoxFuture<'a, Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send + Clone where
    D: Fn(Request<Body>) -> F + 'a + Send + Sync + Clone,
    F: Future<Output = Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send,
    I: Fn(SlackInteractionEvent, Arc<SlackClient<SlackClientHyperConnector>>) -> IF + 'static + Send + Sync + Clone,
    IF: Future<Output = ()> + 'static + Send
[src]

impl SlackClientEventsHyperListener[src]

pub fn oauth_service_fn<'a, D, F, I, IF>(
    &self,
    config: Arc<SlackOAuthListenerConfig>,
    install_service_fn: I
) -> impl Fn(Request<Body>, D) -> BoxFuture<'a, Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send + Clone where
    D: Fn(Request<Body>) -> F + 'a + Send + Sync + Clone,
    F: Future<Output = Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send,
    I: Fn(SlackOAuthV2AccessTokenResponse, Arc<SlackClient<SlackClientHyperConnector>>) -> IF + 'static + Send + Sync + Clone,
    IF: Future<Output = ()> + 'static + Send
[src]

impl SlackClientEventsHyperListener[src]

pub fn push_events_service_fn<'a, D, F, I, IF>(
    &self,
    config: Arc<SlackPushEventsListenerConfig>,
    push_service_fn: I
) -> impl Fn(Request<Body>, D) -> BoxFuture<'a, Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send + Clone where
    D: Fn(Request<Body>) -> F + 'a + Send + Sync + Clone,
    F: Future<Output = Result<Response<Body>, Box<dyn Error + Send + Sync + 'a>>> + 'a + Send,
    I: Fn(SlackPushEvent, Arc<SlackClient<SlackClientHyperConnector>>) -> IF + 'static + Send + Sync + Clone,
    IF: Future<Output = ()> + 'static + Send
[src]

impl SlackClientEventsHyperListener[src]

Trait Implementations

impl Clone for SlackClientEventsHyperListener[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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.