ferogram_tl_parser/tl/category.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// If you use or modify this code, keep this notice at the top of your file
8// and include the LICENSE-MIT or LICENSE-APACHE file from this repository:
9// https://github.com/ankit-chaubey/ferogram
10
11#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
12/// Whether a TL definition is a data constructor or an RPC function.
13pub enum Category {
14 /// A concrete data constructor (the section before `---functions---`).
15 Types,
16 /// An RPC function definition (the section after `---functions---`).
17 Functions,
18}