]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/go_trait.rs
Rollup merge of #28991 - goyox86:goyox86/rustfmting-liblog-II, r=alexcrichton
[rust.git] / src / test / auxiliary / go_trait.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 // Common code used for tests that model the Fn/FnMut/FnOnce hierarchy.
12
13 pub trait Go {
14     fn go(&self, arg: isize);
15 }
16
17 pub fn go<G:Go>(this: &G, arg: isize) {
18     this.go(arg)
19 }
20
21 pub trait GoMut {
22     fn go_mut(&mut self, arg: isize);
23 }
24
25 pub fn go_mut<G:GoMut>(this: &mut G, arg: isize) {
26     this.go_mut(arg)
27 }
28
29 pub trait GoOnce {
30     fn go_once(self, arg: isize);
31 }
32
33 pub fn go_once<G:GoOnce>(this: G, arg: isize) {
34     this.go_once(arg)
35 }
36
37 impl<G> GoMut for G
38     where G : Go
39 {
40     fn go_mut(&mut self, arg: isize) {
41         go(&*self, arg)
42     }
43 }
44
45 impl<G> GoOnce for G
46     where G : GoMut
47 {
48     fn go_once(mut self, arg: isize) {
49         go_mut(&mut self, arg)
50     }
51 }