Skip to main content

memcached_async/
lib.rs

1//! Async memcached protocol framework (ASCII/meta/binary).
2
3mod codec;
4mod context;
5mod error;
6pub mod extract;
7mod response;
8mod router;
9mod server;
10mod types;
11
12pub use codec::{AsciiDecoder, BinaryDecoder};
13pub use context::{ClientId, ConnectionInfo, Extensions, RequestContext};
14pub use error::{Error, ErrorKind, Result};
15pub use response::*;
16pub use router::{FromRequest, Handler, IntoHandler, Router};
17pub use server::{Server, ServerBuilder, ServerConfig};
18pub use types::*;