Created by [`#[patch]`](crate::patch). Internal use only. Creates a `#[no_mangle] pub static` instance to be imported in another binary by [`Patchable`](crate::Patchable) methods.
| 3 | /// Creates a `#[no_mangle] pub static` instance to be imported in another |
| 4 | /// binary by [`Patchable`](crate::Patchable) methods. |
| 5 | pub struct HotpatchExport<T: 'static> { |
| 6 | pub symbol: &'static str, |
| 7 | pub sig: &'static str, |
| 8 | pub ptr: T, |
| 9 | } |
| 10 | |
| 11 | #[doc(hidden)] |
| 12 | impl<T: 'static> HotpatchExport<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected