Docs.rs
quickwit-actors-0.3.0
quickwit-actors 0.3.0
Docs.rs crate page
AGPL-3.0-or-later
Links
Homepage
Documentation
Repository
crates.io
Source
Owners
fulmicoton
Dependencies
anyhow ^1
normal
async-trait ^0.1
normal
flume ^0.10
normal
futures ^0.3
normal
quickwit-common ^0.3.0
normal
thiserror ^1
normal
tokio ^1.18
normal
tracing ^0.1.29
normal
rand ^0.8
dev
Versions
62.67%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Supervisable
quickwit_
actors
0.3.0
Supervisable
Required Methods
health
name
Implementors
In crate quickwit_
actors
quickwit_actors
Trait
Supervisable
Copy item path
Source
pub trait Supervisable { // Required methods fn
name
(&self) -> &
str
;
fn
health
(&self) ->
Health
; }
Required Methods
§
Source
fn
name
(&self) -> &
str
Source
fn
health
(&self) ->
Health
Implementors
§
Source
§
impl<A:
Actor
>
Supervisable
for
ActorHandle
<A>