2018-10-23 23:57:09 -05:00
|
|
|
pub trait Signal {
|
|
|
|
type Item;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Signal2 {
|
|
|
|
type Item2;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B, C> Signal2 for B where B: Signal<Item = C> {
|
|
|
|
type Item2 = C;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has issue_50159/struct.Switch.html
|
2022-09-25 15:52:26 -05:00
|
|
|
// @has - '//h3[@class="code-header"]' 'impl<B> Send for Switch<B>where <B as Signal>::Item: Send'
|
|
|
|
// @has - '//h3[@class="code-header"]' 'impl<B> Sync for Switch<B>where <B as Signal>::Item: Sync'
|
2021-04-18 01:43:20 -05:00
|
|
|
// @count - '//*[@id="implementations-list"]//*[@class="impl"]' 0
|
2023-01-28 17:35:02 -06:00
|
|
|
// @count - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]' 5
|
2018-10-23 23:57:09 -05:00
|
|
|
pub struct Switch<B: Signal> {
|
|
|
|
pub inner: <B as Signal2>::Item2,
|
|
|
|
}
|