(mut self, name: impl Into<String>)
| 355 | /// Set the tool name. |
| 356 | #[must_use] |
| 357 | pub fn with_tool_name(mut self, name: impl Into<String>) -> Self { |
| 358 | self.tool_name = Some(name.into()); |
| 359 | self |
| 360 | } |
| 361 | |
| 362 | /// Set the tool use ID. |
| 363 | #[must_use] |
no outgoing calls