pub trait IYieldRequestMethods: IYieldRequest {
// Provided methods
fn get_forced(self) -> bool { ... }
fn set_forced(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_forced(self) -> bool
fn get_forced(self) -> bool
get_Forced() overload
Sourcefn set_forced(self, value: impl Into<bool>)
fn set_forced(self, value: impl Into<bool>)
set_Forced(bool) overload
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.
Implementors§
impl<__T: IYieldRequest> IYieldRequestMethods for __T
Available on crate feature
moon_sharp-interpreter-yieldrequest only.