]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/obligation_forest/node_index.rs
Use checked NonZero constructor in obligation forest NodeIndex
[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         NodeIndex { index: NonZero::new((value as u32) + 1).unwrap() }
23     }
24
25     pub fn get(self) -> usize {
26         (self.index.get() - 1) as usize
27     }
28 }