pub trait UnsafeCallable<Args> {
type Ret;
// Required method
unsafe fn call(&self, args: Args) -> Self::Ret;
}
Expand description
Trait representing an unsafe function that may be called.
pub trait UnsafeCallable<Args> {
type Ret;
// Required method
unsafe fn call(&self, args: Args) -> Self::Ret;
}
Trait representing an unsafe function that may be called.