ferogram_tl_parser/tl/flag.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//
8// If you use or modify this code, keep this notice at the top of your file
9// and include the LICENSE-MIT or LICENSE-APACHE file from this repository:
10// https://github.com/ankit-chaubey/ferogram
11
12/// A flag reference inside a parameter type, e.g. `flags.0` in `flags.0?true`.
13#[derive(Clone, Debug, PartialEq, Eq, Hash)]
14pub struct Flag {
15 /// The name of the flags field that holds this bit (usually `"flags"`).
16 pub name: String,
17 /// The bit index (0-based).
18 pub index: u32,
19}