1 2 3 4 5 6
use crate::lib::pgwire::{engine::Engine, protocol::RowDescription}; pub struct BoundPortal<E: Engine> { pub portal: E::PortalType, pub row_desc: RowDescription, }