pub trait YesNoDialogExt {
// Required method
fn bind_with<Methods: TwoChoiceDialogMethods>(
proc: impl Into<ProcInst>,
message: impl Into<Il2CppString>,
first_text: impl Into<Il2CppString>,
second_text: impl Into<Il2CppString>,
);
}Required Methods§
fn bind_with<Methods: TwoChoiceDialogMethods>( proc: impl Into<ProcInst>, message: impl Into<Il2CppString>, first_text: impl Into<Il2CppString>, second_text: impl Into<Il2CppString>, )
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.