-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
tl_long_gen.go
101 lines (86 loc) · 1.83 KB
/
tl_long_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
// Code generated by gotdgen, DO NOT EDIT.
package e2e
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdp"
)
// No-op definition for keeping imports.
var _ = bin.Buffer{}
var _ = context.Background()
var _ = fmt.Stringer(nil)
var _ = strings.Builder{}
var _ = errors.Is
var _ = sort.Ints
var _ = tdp.Format
// Long represents TL type `long#22076cba`.
//
// See https://core.telegram.org/constructor/long for reference.
type Long struct {
}
// LongTypeID is TL type id of Long.
const LongTypeID = 0x22076cba
func (l *Long) Zero() bool {
if l == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (l *Long) String() string {
if l == nil {
return "Long(nil)"
}
type Alias Long
return fmt.Sprintf("Long%+v", Alias(*l))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*Long) TypeID() uint32 {
return LongTypeID
}
// TypeName returns name of type in TL schema.
func (*Long) TypeName() string {
return "long"
}
// TypeInfo returns info about TL type.
func (l *Long) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "long",
ID: LongTypeID,
}
if l == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (l *Long) Encode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't encode long#22076cba as nil")
}
b.PutID(LongTypeID)
return nil
}
// Decode implements bin.Decoder.
func (l *Long) Decode(b *bin.Buffer) error {
if l == nil {
return fmt.Errorf("can't decode long#22076cba to nil")
}
if err := b.ConsumeID(LongTypeID); err != nil {
return fmt.Errorf("unable to decode long#22076cba: %w", err)
}
return nil
}
// Ensuring interfaces in compile-time for Long.
var (
_ bin.Encoder = &Long{}
_ bin.Decoder = &Long{}
)