pub trait SlackHttpClient: Send + Sync {
Show 15 methods
// Required methods
fn post_message<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
channel: &'life1 str,
text: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<String, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn post_thread_reply<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
channel: &'life1 str,
thread_ts: &'life2 str,
text: &'life3 str,
) -> Pin<Box<dyn Future<Output = Result<String, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait;
fn conversations_history<'life0, 'life1, 'async_trait>(
&'life0 self,
channel: &'life1 str,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackMessage>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn auth_test<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<String, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn conversations_list<'life0, 'life1, 'async_trait>(
&'life0 self,
types: &'life1 str,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackChannelInfo>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn conversations_join<'life0, 'life1, 'async_trait>(
&'life0 self,
channel_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn conversations_info<'life0, 'life1, 'async_trait>(
&'life0 self,
channel_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<SlackChannelInfo, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn users_list<'life0, 'async_trait>(
&'life0 self,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackUserInfo>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn users_info<'life0, 'life1, 'async_trait>(
&'life0 self,
user_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<SlackUserInfo, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn reactions_add<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
channel: &'life1 str,
timestamp: &'life2 str,
name: &'life3 str,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait;
fn reactions_get<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
channel: &'life1 str,
timestamp: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackReaction>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn files_list<'life0, 'life1, 'async_trait>(
&'life0 self,
channel: Option<&'life1 str>,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackFile>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn team_info<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SlackTeamInfo, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn usergroups_list<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Vec<SlackUserGroup>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn conversations_open<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
user_ids: &'life1 [&'life2 str],
) -> Pin<Box<dyn Future<Output = Result<String, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}Expand description
Trait for Slack API interactions.