]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/escape-deref-methods.rs
Rollup merge of #46940 - EdSchouten:cloudabi, r=alexcrichton
[rust.git] / src / test / rustdoc / escape-deref-methods.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 #![crate_name = "foo"]
12
13 use std::ops::{Deref, DerefMut};
14
15 #[derive(Debug, Clone)]
16 pub struct Title {
17     name: String,
18 }
19
20 #[derive(Debug, Clone)]
21 pub struct TitleList {
22     pub members: Vec<Title>,
23 }
24
25 impl TitleList {
26     pub fn new() -> Self {
27         TitleList { members: Vec::new() }
28     }
29 }
30
31 impl Deref for TitleList {
32     type Target = Vec<Title>;
33
34     fn deref(&self) -> &Self::Target {
35         &self.members
36     }
37 }
38
39 // @has foo/struct.TitleList.html
40 // @has - '//*[@class="sidebar-title"]' 'Methods from Deref<Target=Vec<Title>>'
41 impl DerefMut for TitleList {
42     fn deref_mut(&mut self) -> &mut Self::Target {
43         &mut self.members
44     }
45 }