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

None

Don’t store

Bytes

Store it as a bytes::Bytes

BytesMut

Store it as a bytes::BytesMut

Params

Parse and store it in a blather::Params buffer

KVLines

Parse and store it as a blather::KVLines buffer

File(PathBuf)

Store it in a file

Tuple Fields of File

0: PathBuf

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.