Skip to main content

ferogram_tl_parser/tl/
mod.rs

1// Copyright (c) Ankit Chaubey <ankitchaubey.dev@gmail.com>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3//
4// ferogram: async Telegram MTProto client in Rust
5// https://github.com/ankit-chaubey/ferogram
6//
7// Based on layer: https://github.com/ankit-chaubey/layer
8// Follows official Telegram client behaviour (tdesktop, TDLib).
9//
10// If you use or modify this code, keep this notice at the top of your file
11// and include the LICENSE-MIT or LICENSE-APACHE file from this repository:
12// https://github.com/ankit-chaubey/ferogram
13
14//! Rust types representing the Abstract Syntax Tree of a TL definition.
15
16mod category;
17mod definition;
18mod flag;
19mod parameter;
20mod parameter_type;
21mod ty;
22
23pub use category::Category;
24pub use definition::Definition;
25pub use flag::Flag;
26pub use parameter::Parameter;
27pub use parameter_type::ParameterType;
28pub use ty::Type;