pub trait ReprHs {
// Required method
fn into() -> HsType;
}Expand description
Turn a given Rust type into his HsType target.
Deducing what’s the right Haskell type target given an arbitrary Rust type
is provided by antlion feature of hs-bingen-derive and rely mostly on
Rust type inference through this trait.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.