type go.opentelemetry.io/otel/api/metric.MeterMust

16 uses

	go.opentelemetry.io/otel/api/metric (current package)
		must.go#L19: type MeterMust struct {
		must.go#L32: func Must(meter Meter) MeterMust {
		must.go#L33: 	return MeterMust{meter: meter}
		must.go#L38: func (mm MeterMust) NewInt64Counter(name string, cos ...InstrumentOption) Int64Counter {
		must.go#L48: func (mm MeterMust) NewFloat64Counter(name string, cos ...InstrumentOption) Float64Counter {
		must.go#L58: func (mm MeterMust) NewInt64UpDownCounter(name string, cos ...InstrumentOption) Int64UpDownCounter {
		must.go#L68: func (mm MeterMust) NewFloat64UpDownCounter(name string, cos ...InstrumentOption) Float64UpDownCounter {
		must.go#L78: func (mm MeterMust) NewInt64ValueRecorder(name string, mos ...InstrumentOption) Int64ValueRecorder {
		must.go#L88: func (mm MeterMust) NewFloat64ValueRecorder(name string, mos ...InstrumentOption) Float64ValueRecorder {
		must.go#L98: func (mm MeterMust) NewInt64ValueObserver(name string, callback Int64ObserverFunc, oos ...InstrumentOption) Int64ValueObserver {
		must.go#L108: func (mm MeterMust) NewFloat64ValueObserver(name string, callback Float64ObserverFunc, oos ...InstrumentOption) Float64ValueObserver {
		must.go#L118: func (mm MeterMust) NewInt64SumObserver(name string, callback Int64ObserverFunc, oos ...InstrumentOption) Int64SumObserver {
		must.go#L128: func (mm MeterMust) NewFloat64SumObserver(name string, callback Float64ObserverFunc, oos ...InstrumentOption) Float64SumObserver {
		must.go#L138: func (mm MeterMust) NewInt64UpDownSumObserver(name string, callback Int64ObserverFunc, oos ...InstrumentOption) Int64UpDownSumObserver {
		must.go#L148: func (mm MeterMust) NewFloat64UpDownSumObserver(name string, callback Float64ObserverFunc, oos ...InstrumentOption) Float64UpDownSumObserver {
		must.go#L158: func (mm MeterMust) NewBatchObserver(callback BatchObserverFunc) BatchObserverMust {