Set the user session
(mut self, session: Option<Arc<std::sync::RwLock<UserSession>>>)
| 70 | |
| 71 | /// Set the user session |
| 72 | pub fn with_session(mut self, session: Option<Arc<std::sync::RwLock<UserSession>>>) -> Self { |
| 73 | self.session = session; |
| 74 | self |
| 75 | } |
| 76 | |
| 77 | /// Set the graph expression |
| 78 | pub fn with_graph_expr(mut self, graph_expr: Option<GraphExpression>) -> Self { |
no outgoing calls
no test coverage detected