summaryrefslogtreecommitdiff
path: root/rust/src/types.rs
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2024-05-01 09:03:00 -0400
committerRyan Snyder <ryan@vector35.com>2024-05-01 09:03:00 -0400
commit44b051965083e087a098a89c88b6316ef3f95032 (patch)
treed5a24e820f7e841f48aa84bbc4d7621022e6c36d /rust/src/types.rs
parent96c1336e5842dffb62c481dfb22745e7c4c92dd7 (diff)
parent79d8d14eb32a9b1766eb546d3791580dfee7278f (diff)
Merge branch 'fix-into-raw-2' of github.com:rbran/binaryninja-api into dev
Diffstat (limited to 'rust/src/types.rs')
-rw-r--r--rust/src/types.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/rust/src/types.rs b/rust/src/types.rs
index a5f2ca93..dae8a6cc 100644
--- a/rust/src/types.rs
+++ b/rust/src/types.rs
@@ -261,15 +261,6 @@ impl From<BNOffsetWithConfidence> for Conf<i64> {
}
}
-impl From<Conf<Ref<Type>>> for BNTypeWithConfidence {
- fn from(conf: Conf<Ref<Type>>) -> Self {
- Self {
- type_: conf.contents.handle,
- confidence: conf.confidence,
- }
- }
-}
-
impl From<Conf<&Type>> for BNTypeWithConfidence {
fn from(conf: Conf<&Type>) -> Self {
Self {