pub trait AppChannelAPI: BaseClient {
// Required method
fn get_channels(
&self,
channel_ids: &[ChannelId],
) -> impl Future<Output = Result<Response<ChannelResponse>, Error>> + Send;
}Required Methods§
Sourcefn get_channels(
&self,
channel_ids: &[ChannelId],
) -> impl Future<Output = Result<Response<ChannelResponse>, Error>> + Send
fn get_channels( &self, channel_ids: &[ChannelId], ) -> impl Future<Output = Result<Response<ChannelResponse>, Error>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.