pub trait RwPgResponseBuilderExt {
// Required method
fn rows<T: Fields>(self, _: impl IntoIterator<Item = T>) -> Self;
}Required Methods§
Sourcefn rows<T: Fields>(self, _: impl IntoIterator<Item = T>) -> Self
fn rows<T: Fields>(self, _: impl IntoIterator<Item = T>) -> Self
Append rows to the response.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".