pub trait WithFakeFrameContext<SendMeta> {
    // Required method
    fn with_fake_frame_ctx_mut<O, F: FnOnce(&mut FakeFrameCtx<SendMeta>) -> O>(
        &mut self,
        f: F
    ) -> O;
}
Expand description

A trait for abstracting contexts that may contain a FakeFrameCtx.

Required Methods§

source

fn with_fake_frame_ctx_mut<O, F: FnOnce(&mut FakeFrameCtx<SendMeta>) -> O>( &mut self, f: F ) -> O

Calls the callback with a mutable reference to the FakeFrameCtx.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<SendMeta> WithFakeFrameContext<SendMeta> for FakeFrameCtx<SendMeta>