// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
usestd::sync::Arc;/// Policy options to enable distributed tracing.
#[derive(Clone, Debug, Default)]pubstructInstrumentationOptions{/// Set the tracer provider for distributed tracing.
pubtracer_provider:Option<Arc<dyn crate::tracing::TracerProvider>>,
}