2021-01-15 20:34:15 -05:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2022-09-07 09:37:22 +01:00
|
|
|
// @is "$.index[*][?(@.name=='WithGenerics')].visibility" \"public\"
|
2023-05-22 18:17:52 +01:00
|
|
|
// @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.fields_stripped" true
|
|
|
|
// @is "$.index[*][?(@.name=='WithGenerics')].inner.struct.kind.plain.fields" []
|
2021-01-15 20:34:15 -05:00
|
|
|
pub struct WithGenerics<T, U> {
|
|
|
|
stuff: Vec<T>,
|
|
|
|
things: HashMap<U, U>,
|
|
|
|
}
|