(self)
| 109 | } |
| 110 | |
| 111 | pub fn build(self) -> Result<MainGraph> { |
| 112 | load_impl( |
| 113 | self.local_key, |
| 114 | config::parser::Parser::from_str(self.template.as_ref(), Some(self.dynamic.as_ref()))?, |
| 115 | ) |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | use std::sync::atomic::{AtomicU64, Ordering}; |