kovi 0.13.0-rc1

A OneBot V11 bot plugin framework
Documentation
use crate::ApiReturn;
use crate::bot::{BotInformation, SendApi};
use crate::event::{Event, InternalEvent, MessageEventTrait};
use std::pin::Pin;
use std::sync::Arc;
use tokio::sync::{mpsc, oneshot};

pub(crate) type ArcTypeDeFn = Arc<
    dyn Fn(
            &InternalEvent,
            &BotInformation,
            &mpsc::Sender<ApiAndOptOneshot>,
        ) -> Option<Arc<dyn Event>>
        + Send
        + Sync,
>;
pub(crate) type ArcTypeDeMsgEventFn = Arc<
    dyn Fn(
            &InternalEvent,
            &BotInformation,
            &mpsc::Sender<ApiAndOptOneshot>,
        ) -> Option<Arc<dyn MessageEventTrait>>
        + Send
        + Sync,
>;
pub(crate) type KoviAsyncFn = dyn Fn() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync;

pub type PinFut = Pin<Box<dyn Future<Output = ()> + Send>>;

pub type NoArgsFn = Arc<dyn Fn() -> PinFut + Send + Sync>;

pub type ApiOneshotSender = oneshot::Sender<Result<ApiReturn, ApiReturn>>;
pub type ApiOneshotReceiver = oneshot::Receiver<Result<ApiReturn, ApiReturn>>;

pub type ApiAndOptOneshot = (SendApi, Option<ApiOneshotSender>);

pub type ApiAndRuturn = (SendApi, Result<ApiReturn, ApiReturn>);