1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420 |
- // Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
- package systeminfo
- import (
- json "encoding/json"
- easyjson "github.com/mailru/easyjson"
- jlexer "github.com/mailru/easyjson/jlexer"
- jwriter "github.com/mailru/easyjson/jwriter"
- )
- // suppress unused package warning
- var (
- _ *json.RawMessage
- _ *jlexer.Lexer
- _ *jwriter.Writer
- _ easyjson.Marshaler
- )
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo(in *jlexer.Lexer, out *VideoEncodeAcceleratorCapability) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "profile":
- out.Profile = string(in.String())
- case "maxResolution":
- if in.IsNull() {
- in.Skip()
- out.MaxResolution = nil
- } else {
- if out.MaxResolution == nil {
- out.MaxResolution = new(Size)
- }
- (*out.MaxResolution).UnmarshalEasyJSON(in)
- }
- case "maxFramerateNumerator":
- out.MaxFramerateNumerator = int64(in.Int64())
- case "maxFramerateDenominator":
- out.MaxFramerateDenominator = int64(in.Int64())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo(out *jwriter.Writer, in VideoEncodeAcceleratorCapability) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"profile\":"
- out.RawString(prefix[1:])
- out.String(string(in.Profile))
- }
- {
- const prefix string = ",\"maxResolution\":"
- out.RawString(prefix)
- if in.MaxResolution == nil {
- out.RawString("null")
- } else {
- (*in.MaxResolution).MarshalEasyJSON(out)
- }
- }
- {
- const prefix string = ",\"maxFramerateNumerator\":"
- out.RawString(prefix)
- out.Int64(int64(in.MaxFramerateNumerator))
- }
- {
- const prefix string = ",\"maxFramerateDenominator\":"
- out.RawString(prefix)
- out.Int64(int64(in.MaxFramerateDenominator))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v VideoEncodeAcceleratorCapability) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v VideoEncodeAcceleratorCapability) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *VideoEncodeAcceleratorCapability) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *VideoEncodeAcceleratorCapability) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo1(in *jlexer.Lexer, out *VideoDecodeAcceleratorCapability) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "profile":
- out.Profile = string(in.String())
- case "maxResolution":
- if in.IsNull() {
- in.Skip()
- out.MaxResolution = nil
- } else {
- if out.MaxResolution == nil {
- out.MaxResolution = new(Size)
- }
- (*out.MaxResolution).UnmarshalEasyJSON(in)
- }
- case "minResolution":
- if in.IsNull() {
- in.Skip()
- out.MinResolution = nil
- } else {
- if out.MinResolution == nil {
- out.MinResolution = new(Size)
- }
- (*out.MinResolution).UnmarshalEasyJSON(in)
- }
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo1(out *jwriter.Writer, in VideoDecodeAcceleratorCapability) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"profile\":"
- out.RawString(prefix[1:])
- out.String(string(in.Profile))
- }
- {
- const prefix string = ",\"maxResolution\":"
- out.RawString(prefix)
- if in.MaxResolution == nil {
- out.RawString("null")
- } else {
- (*in.MaxResolution).MarshalEasyJSON(out)
- }
- }
- {
- const prefix string = ",\"minResolution\":"
- out.RawString(prefix)
- if in.MinResolution == nil {
- out.RawString("null")
- } else {
- (*in.MinResolution).MarshalEasyJSON(out)
- }
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v VideoDecodeAcceleratorCapability) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo1(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v VideoDecodeAcceleratorCapability) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo1(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *VideoDecodeAcceleratorCapability) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo1(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *VideoDecodeAcceleratorCapability) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo1(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo2(in *jlexer.Lexer, out *Size) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "width":
- out.Width = int64(in.Int64())
- case "height":
- out.Height = int64(in.Int64())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo2(out *jwriter.Writer, in Size) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"width\":"
- out.RawString(prefix[1:])
- out.Int64(int64(in.Width))
- }
- {
- const prefix string = ",\"height\":"
- out.RawString(prefix)
- out.Int64(int64(in.Height))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v Size) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo2(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v Size) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo2(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *Size) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo2(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *Size) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo2(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo3(in *jlexer.Lexer, out *ProcessInfo) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "type":
- out.Type = string(in.String())
- case "id":
- out.ID = int64(in.Int64())
- case "cpuTime":
- out.CPUTime = float64(in.Float64())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo3(out *jwriter.Writer, in ProcessInfo) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"type\":"
- out.RawString(prefix[1:])
- out.String(string(in.Type))
- }
- {
- const prefix string = ",\"id\":"
- out.RawString(prefix)
- out.Int64(int64(in.ID))
- }
- {
- const prefix string = ",\"cpuTime\":"
- out.RawString(prefix)
- out.Float64(float64(in.CPUTime))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v ProcessInfo) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo3(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v ProcessInfo) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo3(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *ProcessInfo) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo3(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *ProcessInfo) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo3(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo4(in *jlexer.Lexer, out *ImageDecodeAcceleratorCapability) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "imageType":
- (out.ImageType).UnmarshalEasyJSON(in)
- case "maxDimensions":
- if in.IsNull() {
- in.Skip()
- out.MaxDimensions = nil
- } else {
- if out.MaxDimensions == nil {
- out.MaxDimensions = new(Size)
- }
- (*out.MaxDimensions).UnmarshalEasyJSON(in)
- }
- case "minDimensions":
- if in.IsNull() {
- in.Skip()
- out.MinDimensions = nil
- } else {
- if out.MinDimensions == nil {
- out.MinDimensions = new(Size)
- }
- (*out.MinDimensions).UnmarshalEasyJSON(in)
- }
- case "subsamplings":
- if in.IsNull() {
- in.Skip()
- out.Subsamplings = nil
- } else {
- in.Delim('[')
- if out.Subsamplings == nil {
- if !in.IsDelim(']') {
- out.Subsamplings = make([]SubsamplingFormat, 0, 4)
- } else {
- out.Subsamplings = []SubsamplingFormat{}
- }
- } else {
- out.Subsamplings = (out.Subsamplings)[:0]
- }
- for !in.IsDelim(']') {
- var v1 SubsamplingFormat
- (v1).UnmarshalEasyJSON(in)
- out.Subsamplings = append(out.Subsamplings, v1)
- in.WantComma()
- }
- in.Delim(']')
- }
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo4(out *jwriter.Writer, in ImageDecodeAcceleratorCapability) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"imageType\":"
- out.RawString(prefix[1:])
- (in.ImageType).MarshalEasyJSON(out)
- }
- {
- const prefix string = ",\"maxDimensions\":"
- out.RawString(prefix)
- if in.MaxDimensions == nil {
- out.RawString("null")
- } else {
- (*in.MaxDimensions).MarshalEasyJSON(out)
- }
- }
- {
- const prefix string = ",\"minDimensions\":"
- out.RawString(prefix)
- if in.MinDimensions == nil {
- out.RawString("null")
- } else {
- (*in.MinDimensions).MarshalEasyJSON(out)
- }
- }
- {
- const prefix string = ",\"subsamplings\":"
- out.RawString(prefix)
- if in.Subsamplings == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v2, v3 := range in.Subsamplings {
- if v2 > 0 {
- out.RawByte(',')
- }
- (v3).MarshalEasyJSON(out)
- }
- out.RawByte(']')
- }
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v ImageDecodeAcceleratorCapability) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo4(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v ImageDecodeAcceleratorCapability) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo4(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *ImageDecodeAcceleratorCapability) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo4(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *ImageDecodeAcceleratorCapability) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo4(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo5(in *jlexer.Lexer, out *GetProcessInfoReturns) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "processInfo":
- if in.IsNull() {
- in.Skip()
- out.ProcessInfo = nil
- } else {
- in.Delim('[')
- if out.ProcessInfo == nil {
- if !in.IsDelim(']') {
- out.ProcessInfo = make([]*ProcessInfo, 0, 8)
- } else {
- out.ProcessInfo = []*ProcessInfo{}
- }
- } else {
- out.ProcessInfo = (out.ProcessInfo)[:0]
- }
- for !in.IsDelim(']') {
- var v4 *ProcessInfo
- if in.IsNull() {
- in.Skip()
- v4 = nil
- } else {
- if v4 == nil {
- v4 = new(ProcessInfo)
- }
- (*v4).UnmarshalEasyJSON(in)
- }
- out.ProcessInfo = append(out.ProcessInfo, v4)
- in.WantComma()
- }
- in.Delim(']')
- }
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo5(out *jwriter.Writer, in GetProcessInfoReturns) {
- out.RawByte('{')
- first := true
- _ = first
- if len(in.ProcessInfo) != 0 {
- const prefix string = ",\"processInfo\":"
- first = false
- out.RawString(prefix[1:])
- {
- out.RawByte('[')
- for v5, v6 := range in.ProcessInfo {
- if v5 > 0 {
- out.RawByte(',')
- }
- if v6 == nil {
- out.RawString("null")
- } else {
- (*v6).MarshalEasyJSON(out)
- }
- }
- out.RawByte(']')
- }
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetProcessInfoReturns) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo5(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetProcessInfoReturns) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo5(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetProcessInfoReturns) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo5(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetProcessInfoReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo5(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo6(in *jlexer.Lexer, out *GetProcessInfoParams) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo6(out *jwriter.Writer, in GetProcessInfoParams) {
- out.RawByte('{')
- first := true
- _ = first
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetProcessInfoParams) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo6(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetProcessInfoParams) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo6(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetProcessInfoParams) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo6(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetProcessInfoParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo6(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo7(in *jlexer.Lexer, out *GetInfoReturns) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "gpu":
- if in.IsNull() {
- in.Skip()
- out.Gpu = nil
- } else {
- if out.Gpu == nil {
- out.Gpu = new(GPUInfo)
- }
- (*out.Gpu).UnmarshalEasyJSON(in)
- }
- case "modelName":
- out.ModelName = string(in.String())
- case "modelVersion":
- out.ModelVersion = string(in.String())
- case "commandLine":
- out.CommandLine = string(in.String())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo7(out *jwriter.Writer, in GetInfoReturns) {
- out.RawByte('{')
- first := true
- _ = first
- if in.Gpu != nil {
- const prefix string = ",\"gpu\":"
- first = false
- out.RawString(prefix[1:])
- (*in.Gpu).MarshalEasyJSON(out)
- }
- if in.ModelName != "" {
- const prefix string = ",\"modelName\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.ModelName))
- }
- if in.ModelVersion != "" {
- const prefix string = ",\"modelVersion\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.ModelVersion))
- }
- if in.CommandLine != "" {
- const prefix string = ",\"commandLine\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.CommandLine))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetInfoReturns) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo7(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetInfoReturns) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo7(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetInfoReturns) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo7(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetInfoReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo7(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo8(in *jlexer.Lexer, out *GetInfoParams) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo8(out *jwriter.Writer, in GetInfoParams) {
- out.RawByte('{')
- first := true
- _ = first
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetInfoParams) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo8(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetInfoParams) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo8(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetInfoParams) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo8(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetInfoParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo8(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo9(in *jlexer.Lexer, out *GetFeatureStateReturns) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "featureEnabled":
- out.FeatureEnabled = bool(in.Bool())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo9(out *jwriter.Writer, in GetFeatureStateReturns) {
- out.RawByte('{')
- first := true
- _ = first
- if in.FeatureEnabled {
- const prefix string = ",\"featureEnabled\":"
- first = false
- out.RawString(prefix[1:])
- out.Bool(bool(in.FeatureEnabled))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetFeatureStateReturns) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo9(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetFeatureStateReturns) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo9(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetFeatureStateReturns) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo9(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetFeatureStateReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo9(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo10(in *jlexer.Lexer, out *GetFeatureStateParams) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "featureState":
- out.FeatureState = string(in.String())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo10(out *jwriter.Writer, in GetFeatureStateParams) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"featureState\":"
- out.RawString(prefix[1:])
- out.String(string(in.FeatureState))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GetFeatureStateParams) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo10(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GetFeatureStateParams) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo10(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GetFeatureStateParams) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo10(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GetFeatureStateParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo10(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo11(in *jlexer.Lexer, out *GPUInfo) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "devices":
- if in.IsNull() {
- in.Skip()
- out.Devices = nil
- } else {
- in.Delim('[')
- if out.Devices == nil {
- if !in.IsDelim(']') {
- out.Devices = make([]*GPUDevice, 0, 8)
- } else {
- out.Devices = []*GPUDevice{}
- }
- } else {
- out.Devices = (out.Devices)[:0]
- }
- for !in.IsDelim(']') {
- var v7 *GPUDevice
- if in.IsNull() {
- in.Skip()
- v7 = nil
- } else {
- if v7 == nil {
- v7 = new(GPUDevice)
- }
- (*v7).UnmarshalEasyJSON(in)
- }
- out.Devices = append(out.Devices, v7)
- in.WantComma()
- }
- in.Delim(']')
- }
- case "auxAttributes":
- (out.AuxAttributes).UnmarshalEasyJSON(in)
- case "featureStatus":
- (out.FeatureStatus).UnmarshalEasyJSON(in)
- case "driverBugWorkarounds":
- if in.IsNull() {
- in.Skip()
- out.DriverBugWorkarounds = nil
- } else {
- in.Delim('[')
- if out.DriverBugWorkarounds == nil {
- if !in.IsDelim(']') {
- out.DriverBugWorkarounds = make([]string, 0, 4)
- } else {
- out.DriverBugWorkarounds = []string{}
- }
- } else {
- out.DriverBugWorkarounds = (out.DriverBugWorkarounds)[:0]
- }
- for !in.IsDelim(']') {
- var v8 string
- v8 = string(in.String())
- out.DriverBugWorkarounds = append(out.DriverBugWorkarounds, v8)
- in.WantComma()
- }
- in.Delim(']')
- }
- case "videoDecoding":
- if in.IsNull() {
- in.Skip()
- out.VideoDecoding = nil
- } else {
- in.Delim('[')
- if out.VideoDecoding == nil {
- if !in.IsDelim(']') {
- out.VideoDecoding = make([]*VideoDecodeAcceleratorCapability, 0, 8)
- } else {
- out.VideoDecoding = []*VideoDecodeAcceleratorCapability{}
- }
- } else {
- out.VideoDecoding = (out.VideoDecoding)[:0]
- }
- for !in.IsDelim(']') {
- var v9 *VideoDecodeAcceleratorCapability
- if in.IsNull() {
- in.Skip()
- v9 = nil
- } else {
- if v9 == nil {
- v9 = new(VideoDecodeAcceleratorCapability)
- }
- (*v9).UnmarshalEasyJSON(in)
- }
- out.VideoDecoding = append(out.VideoDecoding, v9)
- in.WantComma()
- }
- in.Delim(']')
- }
- case "videoEncoding":
- if in.IsNull() {
- in.Skip()
- out.VideoEncoding = nil
- } else {
- in.Delim('[')
- if out.VideoEncoding == nil {
- if !in.IsDelim(']') {
- out.VideoEncoding = make([]*VideoEncodeAcceleratorCapability, 0, 8)
- } else {
- out.VideoEncoding = []*VideoEncodeAcceleratorCapability{}
- }
- } else {
- out.VideoEncoding = (out.VideoEncoding)[:0]
- }
- for !in.IsDelim(']') {
- var v10 *VideoEncodeAcceleratorCapability
- if in.IsNull() {
- in.Skip()
- v10 = nil
- } else {
- if v10 == nil {
- v10 = new(VideoEncodeAcceleratorCapability)
- }
- (*v10).UnmarshalEasyJSON(in)
- }
- out.VideoEncoding = append(out.VideoEncoding, v10)
- in.WantComma()
- }
- in.Delim(']')
- }
- case "imageDecoding":
- if in.IsNull() {
- in.Skip()
- out.ImageDecoding = nil
- } else {
- in.Delim('[')
- if out.ImageDecoding == nil {
- if !in.IsDelim(']') {
- out.ImageDecoding = make([]*ImageDecodeAcceleratorCapability, 0, 8)
- } else {
- out.ImageDecoding = []*ImageDecodeAcceleratorCapability{}
- }
- } else {
- out.ImageDecoding = (out.ImageDecoding)[:0]
- }
- for !in.IsDelim(']') {
- var v11 *ImageDecodeAcceleratorCapability
- if in.IsNull() {
- in.Skip()
- v11 = nil
- } else {
- if v11 == nil {
- v11 = new(ImageDecodeAcceleratorCapability)
- }
- (*v11).UnmarshalEasyJSON(in)
- }
- out.ImageDecoding = append(out.ImageDecoding, v11)
- in.WantComma()
- }
- in.Delim(']')
- }
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo11(out *jwriter.Writer, in GPUInfo) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"devices\":"
- out.RawString(prefix[1:])
- if in.Devices == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v12, v13 := range in.Devices {
- if v12 > 0 {
- out.RawByte(',')
- }
- if v13 == nil {
- out.RawString("null")
- } else {
- (*v13).MarshalEasyJSON(out)
- }
- }
- out.RawByte(']')
- }
- }
- if (in.AuxAttributes).IsDefined() {
- const prefix string = ",\"auxAttributes\":"
- out.RawString(prefix)
- (in.AuxAttributes).MarshalEasyJSON(out)
- }
- if (in.FeatureStatus).IsDefined() {
- const prefix string = ",\"featureStatus\":"
- out.RawString(prefix)
- (in.FeatureStatus).MarshalEasyJSON(out)
- }
- {
- const prefix string = ",\"driverBugWorkarounds\":"
- out.RawString(prefix)
- if in.DriverBugWorkarounds == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v14, v15 := range in.DriverBugWorkarounds {
- if v14 > 0 {
- out.RawByte(',')
- }
- out.String(string(v15))
- }
- out.RawByte(']')
- }
- }
- {
- const prefix string = ",\"videoDecoding\":"
- out.RawString(prefix)
- if in.VideoDecoding == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v16, v17 := range in.VideoDecoding {
- if v16 > 0 {
- out.RawByte(',')
- }
- if v17 == nil {
- out.RawString("null")
- } else {
- (*v17).MarshalEasyJSON(out)
- }
- }
- out.RawByte(']')
- }
- }
- {
- const prefix string = ",\"videoEncoding\":"
- out.RawString(prefix)
- if in.VideoEncoding == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v18, v19 := range in.VideoEncoding {
- if v18 > 0 {
- out.RawByte(',')
- }
- if v19 == nil {
- out.RawString("null")
- } else {
- (*v19).MarshalEasyJSON(out)
- }
- }
- out.RawByte(']')
- }
- }
- {
- const prefix string = ",\"imageDecoding\":"
- out.RawString(prefix)
- if in.ImageDecoding == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
- out.RawString("null")
- } else {
- out.RawByte('[')
- for v20, v21 := range in.ImageDecoding {
- if v20 > 0 {
- out.RawByte(',')
- }
- if v21 == nil {
- out.RawString("null")
- } else {
- (*v21).MarshalEasyJSON(out)
- }
- }
- out.RawByte(']')
- }
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GPUInfo) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo11(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GPUInfo) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo11(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GPUInfo) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo11(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GPUInfo) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo11(l, v)
- }
- func easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo12(in *jlexer.Lexer, out *GPUDevice) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- if isTopLevel {
- in.Consumed()
- }
- in.Skip()
- return
- }
- in.Delim('{')
- for !in.IsDelim('}') {
- key := in.UnsafeFieldName(false)
- in.WantColon()
- if in.IsNull() {
- in.Skip()
- in.WantComma()
- continue
- }
- switch key {
- case "vendorId":
- out.VendorID = float64(in.Float64())
- case "deviceId":
- out.DeviceID = float64(in.Float64())
- case "subSysId":
- out.SubSysID = float64(in.Float64())
- case "revision":
- out.Revision = float64(in.Float64())
- case "vendorString":
- out.VendorString = string(in.String())
- case "deviceString":
- out.DeviceString = string(in.String())
- case "driverVendor":
- out.DriverVendor = string(in.String())
- case "driverVersion":
- out.DriverVersion = string(in.String())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo12(out *jwriter.Writer, in GPUDevice) {
- out.RawByte('{')
- first := true
- _ = first
- {
- const prefix string = ",\"vendorId\":"
- out.RawString(prefix[1:])
- out.Float64(float64(in.VendorID))
- }
- {
- const prefix string = ",\"deviceId\":"
- out.RawString(prefix)
- out.Float64(float64(in.DeviceID))
- }
- if in.SubSysID != 0 {
- const prefix string = ",\"subSysId\":"
- out.RawString(prefix)
- out.Float64(float64(in.SubSysID))
- }
- if in.Revision != 0 {
- const prefix string = ",\"revision\":"
- out.RawString(prefix)
- out.Float64(float64(in.Revision))
- }
- {
- const prefix string = ",\"vendorString\":"
- out.RawString(prefix)
- out.String(string(in.VendorString))
- }
- {
- const prefix string = ",\"deviceString\":"
- out.RawString(prefix)
- out.String(string(in.DeviceString))
- }
- {
- const prefix string = ",\"driverVendor\":"
- out.RawString(prefix)
- out.String(string(in.DriverVendor))
- }
- {
- const prefix string = ",\"driverVersion\":"
- out.RawString(prefix)
- out.String(string(in.DriverVersion))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v GPUDevice) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo12(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v GPUDevice) MarshalEasyJSON(w *jwriter.Writer) {
- easyjsonC5a4559bEncodeGithubComChromedpCdprotoSysteminfo12(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *GPUDevice) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo12(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *GPUDevice) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjsonC5a4559bDecodeGithubComChromedpCdprotoSysteminfo12(l, v)
- }
|