mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
31 lines
571 B
Rust
31 lines
571 B
Rust
// check-pass
|
|
|
|
trait FnOnceForGenericRef<T>: FnOnce(&T) -> Self::FnOutput {
|
|
type FnOutput;
|
|
}
|
|
|
|
impl<T, R, F: FnOnce(&T) -> R> FnOnceForGenericRef<T> for F {
|
|
type FnOutput = R;
|
|
}
|
|
|
|
struct Data<T, D: FnOnceForGenericRef<T>> {
|
|
value: Option<T>,
|
|
output: Option<D::FnOutput>,
|
|
}
|
|
|
|
impl<T, D: FnOnceForGenericRef<T>> Data<T, D> {
|
|
fn new(value: T, f: D) -> Self {
|
|
let output = f(&value);
|
|
Self {
|
|
value: Some(value),
|
|
output: Some(output),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn test() {
|
|
Data::new(String::new(), |_| {});
|
|
}
|
|
|
|
fn main() {}
|