pub trait InitReturn {
// Required method
fn into_init_bool(self) -> bool;
}Expand description
A trait representing types that can be used as the return value for a #[panda::init]
function
Required Methods§
fn into_init_bool(self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".