mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			384 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			384 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| pub struct Demo {
 | |
|     pub x: i32,
 | |
|     #[doc(hidden)]
 | |
|     pub y: i32,
 | |
| }
 | |
| 
 | |
| //@ set x = "$.index[?(@.name=='x')].id"
 | |
| //@ !has "$.index[?(@.name=='y')].id"
 | |
| //@ is "$.index[?(@.name=='Demo')].inner.struct.kind.plain.fields[0]" $x
 | |
| //@ count "$.index[?(@.name=='Demo')].inner.struct.kind.plain.fields[*]" 1
 | |
| //@ is "$.index[?(@.name=='Demo')].inner.struct.kind.plain.has_stripped_fields" true
 | 
