]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/util/rc_slice.rs
change the format of the linked issue number
[rust.git] / src / libsyntax / util / rc_slice.rs
1 // Copyright 2017 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 std::fmt;
12 use std::ops::Deref;
13 use std::rc::Rc;
14
15 #[derive(Clone)]
16 pub struct RcSlice<T> {
17     data: Rc<Box<[T]>>,
18     offset: u32,
19     len: u32,
20 }
21
22 impl<T> RcSlice<T> {
23     pub fn new(vec: Vec<T>) -> Self {
24         RcSlice {
25             offset: 0,
26             len: vec.len() as u32,
27             data: Rc::new(vec.into_boxed_slice()),
28         }
29     }
30 }
31
32 impl<T> Deref for RcSlice<T> {
33     type Target = [T];
34     fn deref(&self) -> &[T] {
35         &self.data[self.offset as usize .. (self.offset + self.len) as usize]
36     }
37 }
38
39 impl<T: fmt::Debug> fmt::Debug for RcSlice<T> {
40     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
41         fmt::Debug::fmt(self.deref(), f)
42     }
43 }