1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
package inspector
// Code generated by cdproto-gen. DO NOT EDIT.
import (
"fmt"
"github.com/mailru/easyjson"
"github.com/mailru/easyjson/jlexer"
"github.com/mailru/easyjson/jwriter"
)
// DetachReason detach reason.
//
// See: ( -- none -- )
type DetachReason string
// String returns the DetachReason as string value.
func (t DetachReason) String() string {
return string(t)
}
// DetachReason values.
const (
DetachReasonTargetClosed DetachReason = "target_closed"
DetachReasonCanceledByUser DetachReason = "canceled_by_user"
DetachReasonReplacedWithDevtools DetachReason = "replaced_with_devtools"
DetachReasonRenderProcessGone DetachReason = "Render process gone."
)
// MarshalEasyJSON satisfies easyjson.Marshaler.
func (t DetachReason) MarshalEasyJSON(out *jwriter.Writer) {
out.String(string(t))
}
// MarshalJSON satisfies json.Marshaler.
func (t DetachReason) MarshalJSON() ([]byte, error) {
return easyjson.Marshal(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *DetachReason) UnmarshalEasyJSON(in *jlexer.Lexer) {
v := in.String()
switch DetachReason(v) {
case DetachReasonTargetClosed:
*t = DetachReasonTargetClosed
case DetachReasonCanceledByUser:
*t = DetachReasonCanceledByUser
case DetachReasonReplacedWithDevtools:
*t = DetachReasonReplacedWithDevtools
case DetachReasonRenderProcessGone:
*t = DetachReasonRenderProcessGone
default:
in.AddError(fmt.Errorf("unknown DetachReason value: %v", v))
}
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *DetachReason) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
|