mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	 3583e86674
			
		
	
	
		3583e86674
		
	
	
	
	
		
			
			This whole thing changes it so that the JS and the UI both use rustc's own path printing to handle the impl IDs. This results in the format changing a little bit; full paths are used in spots where they aren't strictly necessary, and the path sometimes uses generics where the old system used the trait's own name, but it shouldn't matter since the orphan rules will prevent it anyway.
		
			
				
	
	
		
			9 lines
		
	
	
		
			238 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			238 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(rustc_attrs)]
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| // @has foo/primitive.i32.html '//*[@id="impl-ToString-for-T"]//h3[@class="code-header"]' 'impl<T> ToString for T'
 | |
| 
 | |
| #[rustc_doc_primitive = "i32"]
 | |
| /// Some useless docs, wouhou!
 | |
| mod i32 {}
 |