Set extra instructions.
(mut self, extra: impl Into<String>)
| 576 | |
| 577 | /// Set extra instructions. |
| 578 | pub fn with_extra(mut self, extra: impl Into<String>) -> Self { |
| 579 | self.extra = Some(extra.into()); |
| 580 | self |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | // ============================================================================ |
no outgoing calls