pub trait IntoNamedQuery: InfluxDbWriteable + Sized {
// Provided method
fn into_named_query(self) -> WriteQuery { ... }
}
Expand description
Convert a metric to an influxdb query using the type name.
Provided Methods§
fn into_named_query(self) -> WriteQuery
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.