Add one raw `pg_dump` argument.
(mut self, arg: impl Into<String>)
| 53 | |
| 54 | /// Add one raw `pg_dump` argument. |
| 55 | pub fn arg(mut self, arg: impl Into<String>) -> Self { |
| 56 | self.args.push(arg.into()); |
| 57 | self |
| 58 | } |
| 59 | |
| 60 | /// Add raw `pg_dump` arguments. |
| 61 | pub fn args(mut self, args: impl IntoIterator<Item = impl Into<String>>) -> Self { |