Trait scylla_cql::types::serialize::batch::BatchValues
source · pub trait BatchValues {
type BatchValuesIter<'r>: BatchValuesIterator<'r>
where Self: 'r;
// Required method
fn batch_values_iter(&self) -> Self::BatchValuesIter<'_>;
}
Expand description
Represents a list of sets of values for a batch statement.
The data in the object can be consumed with an iterator-like object returned
by the BatchValues::batch_values_iter
method.
Required Associated Types§
sourcetype BatchValuesIter<'r>: BatchValuesIterator<'r>
where
Self: 'r
type BatchValuesIter<'r>: BatchValuesIterator<'r> where Self: 'r
An Iterator
-like object over the values from the parent BatchValues
object.
Required Methods§
sourcefn batch_values_iter(&self) -> Self::BatchValuesIter<'_>
fn batch_values_iter(&self) -> Self::BatchValuesIter<'_>
Returns an iterator over the data contained in this object.
Object Safety§
This trait is not object safe.