(
context: Context<'a>,
window: &'a dyn ContextWindow,
event_loop: &'a dyn ContextEventLoop,
)
| 34 | |
| 35 | impl<'a> AttachedContext<'a> { |
| 36 | pub fn new( |
| 37 | context: Context<'a>, |
| 38 | window: &'a dyn ContextWindow, |
| 39 | event_loop: &'a dyn ContextEventLoop, |
| 40 | ) -> AttachedContext<'a> { |
| 41 | AttachedContext { |
| 42 | context, |
| 43 | event_loop, |
| 44 | window, |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | pub fn close(&self) { |
| 49 | self.event_loop.exit(); |
nothing calls this directly
no outgoing calls
no test coverage detected