Skip to main content

IEachInspectorMethods

Trait IEachInspectorMethods 

Source
pub trait IEachInspectorMethods: IEachInspector {
    // Provided methods
    fn ctor(
        self,
        kind: impl Into<MapInspector_Kind>,
        args: impl Into<Array<DynValue>>,
    ) { ... }
    fn is_each(
        self,
        from_person: impl Into<i32>,
        from_force: impl Into<i32>,
        to_person: impl Into<i32>,
        to_force: impl Into<i32>,
    ) -> bool { ... }
    fn is_eanble(
        self,
        from_person: impl Into<i32>,
        from_force: impl Into<i32>,
        to_person: impl Into<i32>,
        to_force: impl Into<i32>,
    ) -> bool { ... }
}

Provided Methods§

Source

fn ctor( self, kind: impl Into<MapInspector_Kind>, args: impl Into<Array<DynValue>>, )

.ctor(crate::app::mapinspector::MapInspector_Kind, ::unity::Array<crate::moon_sharp::interpreter::dynvalue::DynValue>) overload

Source

fn is_each( self, from_person: impl Into<i32>, from_force: impl Into<i32>, to_person: impl Into<i32>, to_force: impl Into<i32>, ) -> bool

IsEach(i32, i32, i32, i32) overload

Source

fn is_eanble( self, from_person: impl Into<i32>, from_force: impl Into<i32>, to_person: impl Into<i32>, to_force: impl Into<i32>, ) -> bool

IsEanble(i32, i32, i32, i32) 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§

Source§

impl<__T: IEachInspector> IEachInspectorMethods for __T

Available on crate feature app-eachinspector only.