mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
301 B
Rust
16 lines
301 B
Rust
// check-pass
|
|
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
|
|
pub struct Callbacks {
|
|
callbacks: Vec<Rc<RefCell<dyn FnMut(i32)>>>,
|
|
}
|
|
|
|
impl Callbacks {
|
|
pub fn register<F: FnMut(i32)+'static>(&mut self, callback: F) {
|
|
self.callbacks.push(Rc::new(RefCell::new(callback)));
|
|
}
|
|
}
|
|
|
|
fn main() {}
|