(mut self, description: impl Into<Cow<'a, str>>)
| 43 | } |
| 44 | |
| 45 | pub fn with_description(mut self, description: impl Into<Cow<'a, str>>) -> Self { |
| 46 | self.description = Some(description.into()); |
| 47 | self |
| 48 | } |
| 49 | |
| 50 | pub fn add_server(mut self, server: impl Into<Cow<'a, str>>) -> Self { |
| 51 | self.servers.push(server.into()); |
no outgoing calls