(value: &str)
| 2412 | |
| 2413 | impl From<&str> for ManagerInfo { |
| 2414 | fn from(value: &str) -> Self { |
| 2415 | Self { |
| 2416 | manager: ManagerType::Slurm, |
| 2417 | allocation_id: value.to_string(), |
| 2418 | time_limit: None, |
| 2419 | max_memory_mb: None, |
| 2420 | } |
| 2421 | } |
| 2422 | } |
| 2423 | |
| 2424 | impl From<QueueBuilder> for AllocationQueue { |
nothing calls this directly
no test coverage detected