(session: &SessionContext)
| 2137 | /// Create a new task context instance from SessionContext |
| 2138 | impl From<&SessionContext> for TaskContext { |
| 2139 | fn from(session: &SessionContext) -> Self { |
| 2140 | TaskContext::from(&*session.state.read()) |
| 2141 | } |
| 2142 | } |
| 2143 | |
| 2144 | impl From<SessionState> for SessionContext { |
nothing calls this directly
no test coverage detected