pub struct AeronRbControlledHandlerClosure<F: FnMut(i32, *const c_void, usize) -> aeron_rb_read_action_t> { /* private fields */ }
Expand description
Utility class designed to simplify the creation of handlers by allowing the use of closures. Note due to lifetime issues with FnMut, all arguments will be owned i.e. performs allocation for strings This is not the case if you use the trait instead of closure
Trait Implementations§
source§impl<F: FnMut(i32, *const c_void, usize) -> aeron_rb_read_action_t> AeronRbControlledHandlerCallback for AeronRbControlledHandlerClosure<F>
impl<F: FnMut(i32, *const c_void, usize) -> aeron_rb_read_action_t> AeronRbControlledHandlerCallback for AeronRbControlledHandlerClosure<F>
fn handle_aeron_rb_controlled_handler( &mut self, arg1: i32, arg2: *const c_void, arg3: usize, ) -> aeron_rb_read_action_t
Auto Trait Implementations§
impl<F> Freeze for AeronRbControlledHandlerClosure<F>where
F: Freeze,
impl<F> RefUnwindSafe for AeronRbControlledHandlerClosure<F>where
F: RefUnwindSafe,
impl<F> Send for AeronRbControlledHandlerClosure<F>where
F: Send,
impl<F> Sync for AeronRbControlledHandlerClosure<F>where
F: Sync,
impl<F> Unpin for AeronRbControlledHandlerClosure<F>where
F: Unpin,
impl<F> UnwindSafe for AeronRbControlledHandlerClosure<F>where
F: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more