Set sibling shared state
(
mut self,
sibling_state: Option<Arc<dyn Any + Send + Sync>>,
)
| 282 | |
| 283 | /// Set sibling shared state |
| 284 | pub fn with_shared_state( |
| 285 | mut self, |
| 286 | sibling_state: Option<Arc<dyn Any + Send + Sync>>, |
| 287 | ) -> Self { |
| 288 | self.sibling_state = sibling_state; |
| 289 | self |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | impl dyn DataSource { |