mirror of
https://github.com/logos-messaging/logos-messaging-rust-bindings.git
synced 2026-02-06 07:03:13 +00:00
9 lines
167 B
Rust
9 lines
167 B
Rust
|
|
#![feature(provide_any)]
|
|
|
|
use std::any::{Demand, Provider};
|
|
|
|
fn _f<'a, P: Provider>(p: &'a P, demand: &mut Demand<'a>) {
|
|
p.provide(demand);
|
|
}
|