Builder method to set signature
(mut self, signature: impl Into<String>)
| 200 | |
| 201 | /// Builder method to set signature |
| 202 | pub fn with_signature(mut self, signature: impl Into<String>) -> Self { |
| 203 | self.signature = Some(signature.into()); |
| 204 | self |
| 205 | } |
| 206 | |
| 207 | /// Builder method to set exported flag |
| 208 | pub fn with_exported(mut self, exported: bool) -> Self { |
no outgoing calls