You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/distant-plugin/src/api/ctx.rs

20 lines
550 B
Rust

use std::io;
use async_trait::async_trait;
use crate::protocol;
/// Represents a context associated when an API request is being executed, supporting the ability
/// to send responses back asynchronously.
#[async_trait]
pub trait Ctx: Send {
/// Id of the connection associated with this context.
fn connection(&self) -> u32;
/// Clones context, returning a new boxed instance.
fn clone_ctx(&self) -> Box<dyn Ctx>;
/// Sends some response back.
fn send(&self, msg: protocol::Msg<protocol::Response>) -> io::Result<()>;
}