Builder: set summary.
(mut self, summary: impl Into<String>)
| 338 | |
| 339 | /// Builder: set summary. |
| 340 | pub fn with_summary(mut self, summary: impl Into<String>) -> Self { |
| 341 | self.summary = Some(summary.into()); |
| 342 | self |
| 343 | } |
| 344 | |
| 345 | /// Builder: set metadata. |
| 346 | pub fn with_metadata(mut self, metadata: serde_json::Value) -> Self { |
no outgoing calls