Method
from
(value: BNILReferenceSource)
Source from the content-addressed store, hash-verified
| 643 | |
| 644 | impl From<BNILReferenceSource> for ILReferenceSource { |
| 645 | fn from(value: BNILReferenceSource) -> Self { |
| 646 | Self { |
| 647 | function: unsafe { Function::ref_from_raw(value.func) }, |
| 648 | arch: unsafe { CoreArchitecture::from_raw(value.arch) }, |
| 649 | addr: value.addr, |
| 650 | graph_type: value.type_, |
| 651 | expr_idx: value.exprId, |
| 652 | } |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | impl From<&BNILReferenceSource> for ILReferenceSource { |
Callers
nothing calls this directly
Tested by
no test coverage detected