(pb_obj)
| 580 | |
| 581 | |
| 582 | def from_pb_numeric_struct_list(pb_obj) -> NumericStructList: |
| 583 | return NumericStructList( |
| 584 | struct_list=[from_pb_struct(item) for item in pb_obj.struct_list] |
| 585 | ) |
| 586 | |
| 587 | |
| 588 | def to_pb_samplelist(bench_pb2, obj: SampleList): |
nothing calls this directly
no test coverage detected