9 lines
388 B
Rust
9 lines
388 B
Rust
// @has basic/struct.Foo.html
|
|
// @has - '//h3[@class="code-header"]' 'impl<T> Send for Foo<T>where T: Send'
|
|
// @has - '//h3[@class="code-header"]' 'impl<T> Sync for Foo<T>where T: Sync'
|
|
// @count - '//*[@id="implementations-list"]//*[@class="impl has-srclink"]' 0
|
|
// @count - '//*[@id="synthetic-implementations-list"]//*[@class="impl has-srclink"]' 5
|
|
pub struct Foo<T> {
|
|
field: T,
|
|
}
|