pub trait BatchValues {
    fn len(&self) -> usize;
    fn write_nth_to_request(
        &self,
        n: usize,
        buf: &mut impl BufMut
    ) -> Result<(), SerializeValuesError>; fn is_empty(&self) -> bool { ... } }
Expand description

Represents List of ValueList for Batch statement

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors