Builder: set summary.
(mut self, summary: impl Into<String>)
| 474 | |
| 475 | /// Builder: set summary. |
| 476 | pub fn with_summary(mut self, summary: impl Into<String>) -> Self { |
| 477 | self.summary = Some(summary.into()); |
| 478 | self |
| 479 | } |
| 480 | |
| 481 | /// Builder: set metadata. |
| 482 | pub fn with_metadata(mut self, metadata: serde_json::Value) -> Self { |
no outgoing calls