#[non_exhaustive]pub struct InstrumentationLibrary {
pub name: Cow<'static, str>,
pub version: Option<Cow<'static, str>>,
pub schema_url: Option<Cow<'static, str>>,
}
Expand description
Information about a library or crate providing instrumentation.
An instrumentation library should be named to follow any naming conventions of the instrumented library (e.g. ‘middleware’ for a web framework).
See the instrumentation libraries spec for more information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Cow<'static, str>
The library name.
This should be the name of the crate providing the instrumentation.
version: Option<Cow<'static, str>>
The library version.
Examples
let library = opentelemetry_api::InstrumentationLibrary::new(
"my-crate",
Some(env!("CARGO_PKG_VERSION")),
None,
);
schema_url: Option<Cow<'static, str>>
Schema url used by this library.
Implementations§
Trait Implementations§
source§impl Clone for InstrumentationLibrary
impl Clone for InstrumentationLibrary
source§fn clone(&self) -> InstrumentationLibrary
fn clone(&self) -> InstrumentationLibrary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InstrumentationLibrary
impl Debug for InstrumentationLibrary
source§impl Default for InstrumentationLibrary
impl Default for InstrumentationLibrary
source§fn default() -> InstrumentationLibrary
fn default() -> InstrumentationLibrary
Returns the “default value” for a type. Read more
source§impl Hash for InstrumentationLibrary
impl Hash for InstrumentationLibrary
source§impl PartialEq<InstrumentationLibrary> for InstrumentationLibrary
impl PartialEq<InstrumentationLibrary> for InstrumentationLibrary
source§fn eq(&self, other: &InstrumentationLibrary) -> bool
fn eq(&self, other: &InstrumentationLibrary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InstrumentationLibrary
impl StructuralEq for InstrumentationLibrary
impl StructuralPartialEq for InstrumentationLibrary
Auto Trait Implementations§
impl RefUnwindSafe for InstrumentationLibrary
impl Send for InstrumentationLibrary
impl Sync for InstrumentationLibrary
impl Unpin for InstrumentationLibrary
impl UnwindSafe for InstrumentationLibrary
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.