()
| 21 | ) |
| 22 | |
| 23 | func (span *Span) ReadOnly() sdktrace.ReadOnlySpan { |
| 24 | return &readOnlySpan{ |
| 25 | DB: span, |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | type readOnlySpan struct { |
| 30 | // Have to embed the interface to get private(). Goofy. |
no outgoing calls
no test coverage detected