1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use crate::api::{Handle, ManagedTypeApi};

impl ManagedTypeApi for super::UncallableApi {
    fn instance() -> Self {
        unreachable!()
    }

    fn mb_to_big_int_unsigned(&self, _buffer_handle: Handle) -> Handle {
        unreachable!()
    }

    fn mb_to_big_int_signed(&self, _buffer_handle: Handle) -> Handle {
        unreachable!()
    }

    fn mb_from_big_int_unsigned(&self, _big_int_handle: Handle) -> Handle {
        unreachable!()
    }

    fn mb_from_big_int_signed(&self, _big_int_handle: Handle) -> Handle {
        unreachable!()
    }
}