Builder: set summary.
(mut self, summary: impl Into<String>)
| 497 | |
| 498 | /// Builder: set summary. |
| 499 | pub fn with_summary(mut self, summary: impl Into<String>) -> Self { |
| 500 | self.summary = Some(summary.into()); |
| 501 | self |
| 502 | } |
| 503 | |
| 504 | /// Builder: set metadata. |
| 505 | pub fn with_metadata(mut self, metadata: serde_json::Value) -> Self { |
no outgoing calls