8 lines
145 B
Rust
8 lines
145 B
Rust
|
impl SomeStruct {
|
||
|
fn process<T>(v: T) -> <Self as GAT>::R<T>
|
||
|
where Self: GAT<R<T> = T>
|
||
|
{
|
||
|
SomeStruct::do_something(v)
|
||
|
}
|
||
|
}
|