pub trait ConsistencyLevelSupport<'a> {
type O;
// Required method
fn with_consistency_level(
self,
consistency_level: ConsistencyLevel<'a>,
) -> Self::O;
}
pub trait ConsistencyLevelSupport<'a> {
type O;
// Required method
fn with_consistency_level(
self,
consistency_level: ConsistencyLevel<'a>,
) -> Self::O;
}