pub trait IReflectionMethodsCache_Raycast2DCallbackMethods: IReflectionMethodsCache_Raycast2DCallback {
// Provided methods
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>) { ... }
fn invoke(
self,
p1: impl Into<Vector2>,
p2: impl Into<Vector2>,
f: impl Into<f32>,
i: impl Into<i32>,
) -> RaycastHit2D { ... }
}Provided Methods§
Sourcefn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
.ctor(crate::system::object::Object, ::unity::IntPtr) overload
Sourcefn invoke(
self,
p1: impl Into<Vector2>,
p2: impl Into<Vector2>,
f: impl Into<f32>,
i: impl Into<i32>,
) -> RaycastHit2D
fn invoke( self, p1: impl Into<Vector2>, p2: impl Into<Vector2>, f: impl Into<f32>, i: impl Into<i32>, ) -> RaycastHit2D
Invoke(crate::unity_engine::vector2::Vector2, crate::unity_engine::vector2::Vector2, f32, 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§
impl<__T: IReflectionMethodsCache_Raycast2DCallback> IReflectionMethodsCache_Raycast2DCallbackMethods for __T
Available on crate feature
unity_engine-ui-reflectionmethodscache only.