mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			659 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			659 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![crate_name = "foo"]
 | 
						|
 | 
						|
use std::ops::{Deref, DerefMut};
 | 
						|
 | 
						|
#[derive(Debug, Clone)]
 | 
						|
pub struct Title {
 | 
						|
    name: String,
 | 
						|
}
 | 
						|
 | 
						|
#[derive(Debug, Clone)]
 | 
						|
pub struct TitleList {
 | 
						|
    pub members: Vec<Title>,
 | 
						|
}
 | 
						|
 | 
						|
impl TitleList {
 | 
						|
    pub fn new() -> Self {
 | 
						|
        TitleList { members: Vec::new() }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
impl Deref for TitleList {
 | 
						|
    type Target = Vec<Title>;
 | 
						|
 | 
						|
    fn deref(&self) -> &Self::Target {
 | 
						|
        &self.members
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
//@ has foo/struct.TitleList.html
 | 
						|
//@ has - '//div[@class="sidebar-elems"]//h3' 'Methods from Deref<Target=Vec<Title>>'
 | 
						|
impl DerefMut for TitleList {
 | 
						|
    fn deref_mut(&mut self) -> &mut Self::Target {
 | 
						|
        &mut self.members
 | 
						|
    }
 | 
						|
}
 |