(mut self, name: impl Into<String>)
| 363 | /// Set the tool name. |
| 364 | #[must_use] |
| 365 | pub fn with_tool_name(mut self, name: impl Into<String>) -> Self { |
| 366 | self.tool_name = Some(name.into()); |
| 367 | self |
| 368 | } |
| 369 | |
| 370 | /// Set the tool use ID. |
| 371 | #[must_use] |
no outgoing calls