This library wrap the Rust MongoDB Driver's Collection object with Telemetry
```rust
// Instead of getting collection from database
database
.collection::
// import the Trait
use mongo_tracing::InstrumentedCollectionExt;
....
//And replace the "collection" method for "collection_instrumented
database
.collection_instrumented::
```