Get the header name that should carry the runtime session ID.
(&'a self, model: &'a ModelConfig)
| 179 | |
| 180 | /// Get the header name that should carry the runtime session ID. |
| 181 | pub fn get_session_id_header<'a>(&'a self, model: &'a ModelConfig) -> Option<&'a str> { |
| 182 | model |
| 183 | .session_id_header |
| 184 | .as_deref() |
| 185 | .or(self.session_id_header.as_deref()) |
| 186 | } |
| 187 | } |
no outgoing calls
no test coverage detected