mirror of
https://github.com/logos-messaging/logos-delivery-rust-bindings.git
synced 2026-03-18 06:43:07 +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);
|
|
}
|