Add raw `pg_dump` arguments.
(mut self, args: impl IntoIterator<Item = impl Into<String>>)
| 59 | |
| 60 | /// Add raw `pg_dump` arguments. |
| 61 | pub fn args(mut self, args: impl IntoIterator<Item = impl Into<String>>) -> Self { |
| 62 | self.args.extend(args.into_iter().map(Into::into)); |
| 63 | self |
| 64 | } |
| 65 | |
| 66 | /// Select the database to dump. |
| 67 | pub fn database(mut self, database: impl Into<String>) -> Self { |
no outgoing calls