Builder: set summary.
(mut self, summary: impl Into<String>)
| 330 | |
| 331 | /// Builder: set summary. |
| 332 | pub fn with_summary(mut self, summary: impl Into<String>) -> Self { |
| 333 | self.summary = Some(summary.into()); |
| 334 | self |
| 335 | } |
| 336 | |
| 337 | /// Builder: set metadata. |
| 338 | pub fn with_metadata(mut self, metadata: serde_json::Value) -> Self { |
no outgoing calls