pub trait ValueList {
    fn serialized(&self) -> SerializedResult<'_>;

    fn write_to_request(
        &self,
        buf: &mut impl BufMut
    ) -> Result<(), SerializeValuesError> { ... } }
Expand description

Represents list of values to be sent in a query gets serialized and but into request

Required Methods

Provides a view of ValueList as SerializedValues returns Cow to make impl ValueList for SerializedValues efficient

Provided Methods

Implementations on Foreign Types

Implementors