]> git.lizzy.rs Git - rust.git/blob - src/libcore/fmt/rt/v1.rs
core: Split apart the global `core` feature
[rust.git] / src / libcore / fmt / rt / v1.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! This is an internal module used by the ifmt! runtime. These structures are
12 //! emitted to static arrays to precompile format strings ahead of time.
13 //!
14 //! These definitions are similar to their `ct` equivalents, but differ in that
15 //! these can be statically allocated and are slightly optimized for the runtime
16
17 #[derive(Copy, Clone)]
18 pub struct Argument {
19     pub position: Position,
20     pub format: FormatSpec,
21 }
22
23 #[derive(Copy, Clone)]
24 pub struct FormatSpec {
25     pub fill: char,
26     pub align: Alignment,
27     pub flags: u32,
28     pub precision: Count,
29     pub width: Count,
30 }
31
32 /// Possible alignments that can be requested as part of a formatting directive.
33 #[derive(Copy, Clone, PartialEq)]
34 pub enum Alignment {
35     /// Indication that contents should be left-aligned.
36     Left,
37     /// Indication that contents should be right-aligned.
38     Right,
39     /// Indication that contents should be center-aligned.
40     Center,
41     /// No alignment was requested.
42     Unknown,
43 }
44
45 #[derive(Copy, Clone)]
46 pub enum Count {
47     Is(usize),
48     Param(usize),
49     NextParam,
50     Implied,
51 }
52
53 #[derive(Copy, Clone)]
54 pub enum Position {
55     Next,
56     At(usize)
57 }