Enum ddmw_client::msg::recv::StoreType [−][src]
pub enum StoreType {
None,
Bytes,
BytesMut,
Params,
KVLines,
File(PathBuf),
}Expand description
Storage type used to request how a messsage’s metadata and/or payload should be stored/parsed.
Variants
Don’t store
Store it as a bytes::Bytes
Store it as a bytes::BytesMut
Parse and store it in a blather::Params buffer
Parse and store it as a blather::KVLines buffer
File(PathBuf)Store it in a file
Tuple Fields of File
0: PathBuf