Set the service name.
(mut self, name: impl Into<String>)
| 50 | |
| 51 | /// Set the service name. |
| 52 | pub fn with_service_name(mut self, name: impl Into<String>) -> Self { |
| 53 | self.service_name = name.into(); |
| 54 | self |
| 55 | } |
| 56 | |
| 57 | /// Enable or disable trace export. |
| 58 | pub fn with_traces(mut self, enabled: bool) -> Self { |
no outgoing calls