Error implements error.
()
| 83 | |
| 84 | // Error implements error. |
| 85 | func (e UnknownEventTypeError) Error() string { |
| 86 | return fmt.Sprintf("unknown usage event type: %q", e.EventType) |
| 87 | } |
| 88 | |
| 89 | // ParseEventWithType parses the raw event data into the specified Go type. It |
| 90 | // fails if there is any unknown fields or extra data after the event. The |
no outgoing calls