Docs.rs
kumoko-0.6.0
kumoko 0.6.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
BR03D
Dependencies
bincode ^2.0.0-rc.3
normal
bytes ^1.2.1
normal
tokio ^1.20
normal
Versions
79.41%
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
kumoko
0.6.0
All Items
Crate Items
Modules
Traits
Derive Macros
Crate
kumoko
Copy item path
Source
Expand description
Modules
§
client
Module for Client functionality. Enable the client feature to use it.
event
Definitions for Connection Events
server
Module for Server functionality. Enable the server feature to use it.
Traits
§
Decode
Trait that makes a type able to be decoded, akin to serde’s
DeserializeOwned
trait.
Encode
Any source that can be encoded. This trait should be implemented for all types that you want to be able to use with any of the
encode_with
methods.
Message
Any data structure implementing this can be transmitted. Usually,
#[derive(Decode, Encode)]
will be enough to implement it. If the broadcast feature is enabled, Clone is also required.
Derive Macros
§
Decode
Encode