(&self, options: PgDumpOptions)
| 117 | /// Run the bundled WASIX `pg_dump` and return UTF-8 SQL bytes. |
| 118 | #[cfg(feature = "extensions")] |
| 119 | pub fn dump_bytes(&self, options: PgDumpOptions) -> Result<Vec<u8>> { |
| 120 | Ok(self.dump_sql(options)?.into_bytes()) |
| 121 | } |
| 122 | |
| 123 | /// Request shutdown and wait for the listener thread to exit. |
| 124 | /// |