pub trait IPlayableBinding_CreateOutputMethodMethods: IPlayableBinding_CreateOutputMethod {
// Provided methods
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>) { ... }
fn invoke(
self,
graph: impl Into<PlayableGraph>,
name: impl Into<Il2CppString>,
) -> PlayableOutput { ... }
}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,
graph: impl Into<PlayableGraph>,
name: impl Into<Il2CppString>,
) -> PlayableOutput
fn invoke( self, graph: impl Into<PlayableGraph>, name: impl Into<Il2CppString>, ) -> PlayableOutput
Invoke(crate::unity_engine::playables::playablegraph::PlayableGraph, ::unity::Il2CppString) 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: IPlayableBinding_CreateOutputMethod> IPlayableBinding_CreateOutputMethodMethods for __T
Available on crate feature
unity_engine-playables-playablebinding only.