-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_messages_search_results_positions_gen.go
203 lines (181 loc) · 5.24 KB
/
tl_messages_search_results_positions_gen.go
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// MessagesSearchResultsPositions represents TL type `messages.searchResultsPositions#53b22baf`.
//
// See https://core.telegram.org/constructor/messages.searchResultsPositions for reference.
type MessagesSearchResultsPositions struct {
// Count field of MessagesSearchResultsPositions.
Count int
// Positions field of MessagesSearchResultsPositions.
Positions []SearchResultPosition
}
// MessagesSearchResultsPositionsTypeID is TL type id of MessagesSearchResultsPositions.
const MessagesSearchResultsPositionsTypeID = 0x53b22baf
// Ensuring interfaces in compile-time for MessagesSearchResultsPositions.
var (
_ bin.Encoder = &MessagesSearchResultsPositions{}
_ bin.Decoder = &MessagesSearchResultsPositions{}
_ bin.BareEncoder = &MessagesSearchResultsPositions{}
_ bin.BareDecoder = &MessagesSearchResultsPositions{}
)
func (s *MessagesSearchResultsPositions) Zero() bool {
if s == nil {
return true
}
if !(s.Count == 0) {
return false
}
if !(s.Positions == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (s *MessagesSearchResultsPositions) String() string {
if s == nil {
return "MessagesSearchResultsPositions(nil)"
}
type Alias MessagesSearchResultsPositions
return fmt.Sprintf("MessagesSearchResultsPositions%+v", Alias(*s))
}
// FillFrom fills MessagesSearchResultsPositions from given interface.
func (s *MessagesSearchResultsPositions) FillFrom(from interface {
GetCount() (value int)
GetPositions() (value []SearchResultPosition)
}) {
s.Count = from.GetCount()
s.Positions = from.GetPositions()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*MessagesSearchResultsPositions) TypeID() uint32 {
return MessagesSearchResultsPositionsTypeID
}
// TypeName returns name of type in TL schema.
func (*MessagesSearchResultsPositions) TypeName() string {
return "messages.searchResultsPositions"
}
// TypeInfo returns info about TL type.
func (s *MessagesSearchResultsPositions) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "messages.searchResultsPositions",
ID: MessagesSearchResultsPositionsTypeID,
}
if s == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Count",
SchemaName: "count",
},
{
Name: "Positions",
SchemaName: "positions",
},
}
return typ
}
// Encode implements bin.Encoder.
func (s *MessagesSearchResultsPositions) Encode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode messages.searchResultsPositions#53b22baf as nil")
}
b.PutID(MessagesSearchResultsPositionsTypeID)
return s.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (s *MessagesSearchResultsPositions) EncodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't encode messages.searchResultsPositions#53b22baf as nil")
}
b.PutInt(s.Count)
b.PutVectorHeader(len(s.Positions))
for idx, v := range s.Positions {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode messages.searchResultsPositions#53b22baf: field positions element with index %d: %w", idx, err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (s *MessagesSearchResultsPositions) Decode(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode messages.searchResultsPositions#53b22baf to nil")
}
if err := b.ConsumeID(MessagesSearchResultsPositionsTypeID); err != nil {
return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: %w", err)
}
return s.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (s *MessagesSearchResultsPositions) DecodeBare(b *bin.Buffer) error {
if s == nil {
return fmt.Errorf("can't decode messages.searchResultsPositions#53b22baf to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field count: %w", err)
}
s.Count = value
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field positions: %w", err)
}
if headerLen > 0 {
s.Positions = make([]SearchResultPosition, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value SearchResultPosition
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field positions: %w", err)
}
s.Positions = append(s.Positions, value)
}
}
return nil
}
// GetCount returns value of Count field.
func (s *MessagesSearchResultsPositions) GetCount() (value int) {
if s == nil {
return
}
return s.Count
}
// GetPositions returns value of Positions field.
func (s *MessagesSearchResultsPositions) GetPositions() (value []SearchResultPosition) {
if s == nil {
return
}
return s.Positions
}