]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/obligation_forest/node_index.rs
Auto merge of #30931 - oli-obk:trans_disr_newtype, r=arielb1
[rust.git] / src / librustc_data_structures / obligation_forest / node_index.rs
1 // Copyright 2014 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 use core::nonzero::NonZero;
12 use std::u32;
13
14 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
15 pub struct NodeIndex {
16     index: NonZero<u32>
17 }
18
19 impl NodeIndex {
20     pub fn new(value: usize) -> NodeIndex {
21         assert!(value < (u32::MAX as usize));
22         unsafe {
23             NodeIndex { index: NonZero::new((value as u32) + 1) }
24         }
25     }
26
27     pub fn get(self) -> usize {
28         (*self.index - 1) as usize
29     }
30 }
31