sark 0.12.0

Simple Asynchronous Rust webKit - Server
Documentation
1
2
3
4
5
6
7
8
pub use dope_fiber::abi::Fiber;
pub use dope_fiber::owner::SplitTask;
pub use dope_fiber::slab::{ErasedTaskId, FixedSlab, FixedSlabVacantEntry, TaskId};

#[doc(hidden)]
pub trait FixedSlabFiber<'d, Output>: Fiber<'d, Output = Output> {}

impl<'d, F, Output> FixedSlabFiber<'d, Output> for F where F: Fiber<'d, Output = Output> {}