mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			178 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			178 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #[derive(Clone)]
 | |
| pub struct PublicStruct;
 | |
| 
 | |
| mod inner {
 | |
|     use super::PublicStruct;
 | |
| 
 | |
|     impl PublicStruct {
 | |
|         /// [PublicStruct::clone]
 | |
|         pub fn method() {}
 | |
|     }
 | |
| }
 | 
