-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
tl_bytes_gen.go
80 lines (67 loc) · 1.53 KB
/
tl_bytes_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
// Code generated by gotdgen, DO NOT EDIT.
package e2e
import (
"context"
"errors"
"fmt"
"strings"
"github.com/gotd/td/bin"
)
// No-op definition for keeping imports.
var _ = bin.Buffer{}
var _ = context.Background()
var _ = fmt.Stringer(nil)
var _ = strings.Builder{}
var _ = errors.Is
// Bytes represents TL type `bytes#e937bb82`.
//
// See https://core.telegram.org/constructor/bytes for reference.
type Bytes struct {
}
// BytesTypeID is TL type id of Bytes.
const BytesTypeID = 0xe937bb82
func (b *Bytes) Zero() bool {
if b == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (b *Bytes) String() string {
if b == nil {
return "Bytes(nil)"
}
var sb strings.Builder
sb.WriteString("Bytes")
sb.WriteString("{\n")
sb.WriteString("}")
return sb.String()
}
// TypeID returns MTProto type id (CRC code).
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (b *Bytes) TypeID() uint32 {
return BytesTypeID
}
// Encode implements bin.Encoder.
func (b *Bytes) Encode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't encode bytes#e937bb82 as nil")
}
buf.PutID(BytesTypeID)
return nil
}
// Decode implements bin.Decoder.
func (b *Bytes) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("can't decode bytes#e937bb82 to nil")
}
if err := buf.ConsumeID(BytesTypeID); err != nil {
return fmt.Errorf("unable to decode bytes#e937bb82: %w", err)
}
return nil
}
// Ensuring interfaces in compile-time for Bytes.
var (
_ bin.Encoder = &Bytes{}
_ bin.Decoder = &Bytes{}
)