pub trait IUnitAI_RandomFlagFieldMethods: IUnitAI_RandomFlagField {
// Provided methods
fn set(self, f: impl Into<UnitAI_RandomFlag>) { ... }
fn test(self, f: impl Into<UnitAI_RandomFlag>) -> bool { ... }
fn not(self, f: impl Into<UnitAI_RandomFlag>) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set(self, f: impl Into<UnitAI_RandomFlag>)
fn set(self, f: impl Into<UnitAI_RandomFlag>)
Set(crate::app::unitai::UnitAI_RandomFlag) overload
Sourcefn test(self, f: impl Into<UnitAI_RandomFlag>) -> bool
fn test(self, f: impl Into<UnitAI_RandomFlag>) -> bool
Test(crate::app::unitai::UnitAI_RandomFlag) overload
Sourcefn not(self, f: impl Into<UnitAI_RandomFlag>) -> bool
fn not(self, f: impl Into<UnitAI_RandomFlag>) -> bool
Not(crate::app::unitai::UnitAI_RandomFlag) 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: IUnitAI_RandomFlagField> IUnitAI_RandomFlagFieldMethods for __T
Available on crate feature
app-unitai only.