2018-06-22 22:25:56 -04:00
|
|
|
pub trait OwnedTrait<'a> {
|
|
|
|
type Reader;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has static_region/struct.Owned.html
|
2023-01-28 16:35:02 -07:00
|
|
|
// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
|
2022-08-31 17:05:46 +02:00
|
|
|
// "impl<T> Send for Owned<T>where <T as OwnedTrait<'static>>::Reader: Send"
|
2018-06-22 22:25:56 -04:00
|
|
|
pub struct Owned<T> where T: OwnedTrait<'static> {
|
|
|
|
marker: <T as OwnedTrait<'static>>::Reader,
|
|
|
|
}
|