about summary refs log tree commit diff
path: root/tests/rustdoc-json/structs/with_generics.rs
blob: 979b002d0eee30d76d5757f4dfef3b8b0844b39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::collections::HashMap;

//@ is "$.index[?(@.name=='WithGenerics')].visibility" \"public\"
//@ has "$.index[?(@.name=='WithGenerics')].inner.struct"
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.generics.params[0].name" \"T\"
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.generics.params[0].kind.type.bounds" []
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.generics.params[1].name" \"U\"
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.generics.params[1].kind.type.bounds" []
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.kind.plain.has_stripped_fields" true
//@ is "$.index[?(@.name=='WithGenerics')].inner.struct.kind.plain.fields" []
pub struct WithGenerics<T, U> {
    stuff: Vec<T>,
    things: HashMap<U, U>,
}