actix_web_lab/
respond.rs

1//! Expiremental responders and response helpers.
2
3#[cfg(feature = "cbor")]
4pub use crate::cbor::Cbor;
5#[cfg(feature = "msgpack")]
6pub use crate::msgpack::{MessagePack, MessagePackNamed};
7pub use crate::{csv::Csv, display_stream::DisplayStream, html::Html, ndjson::NdJson};