| 46 | |
| 47 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 48 | pub struct MoleculePartition { |
| 49 | pub molecule_id: usize, |
| 50 | pub start: usize, |
| 51 | pub end: usize, |
| 52 | } |
| 53 | |
| 54 | impl MoleculePartition { |
| 55 | pub fn len(self) -> usize { |
nothing calls this directly
no outgoing calls
no test coverage detected