ractor 0.15.12

A actor framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Sean Lawlor
//
// This source code is licensed under both the MIT license found in the
// LICENSE-MIT file in the root directory of this source tree.

//! Factory functionality tests

mod basic;
mod draining_requests;
mod dynamic_discarding;
mod dynamic_pool;
mod dynamic_settings;
mod lifecycle;
mod priority_queueing;
mod ratelim;
#[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))]
/// these tests use panic and are not supported on wasm because wasm is panic=abort
mod worker_lifecycle;