Docs.rs
eventroute-0.1.0
eventroute 0.1.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
nyxtom
Dependencies
Versions
0%
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
Handler
eventroute
0.1.0
Handler
Required Methods
call
Implementations on Foreign Types
Arc<T>
Implementors
In crate eventroute
eventroute
Trait
Handler
Copy item path
Source
pub trait Handler<T>: 'static { // Required method fn
call
(&self, args: T); }
Required Methods
§
Source
fn
call
(&self, args: T)
Implementations on Foreign Types
§
Source
§
impl<T, S>
Handler
<S> for
Arc
<T>
where T:
Handler
<S>,
Source
§
fn
call
(&self, args: S)
Implementors
§
Source
§
impl<Func, T>
Handler
<T> for Func
where Func: 'static +
Fn
(T),
Source
§
impl<T: 'static>
Handler
<T> for
Source
<T>