pub trait IGradientMethods: IGradient {
// Provided methods
fn cleanup(self) { ... }
fn internal_equals(self, other: impl Into<IntPtr>) -> bool { ... }
fn ctor(self) { ... }
fn finalize(self) { ... }
fn equals(self, o: impl Into<Object>) -> bool { ... }
fn equals_2(self, other: impl Into<Gradient>) -> bool { ... }
fn get_hash_code(self) -> i32 { ... }
}Provided Methods§
Sourcefn internal_equals(self, other: impl Into<IntPtr>) -> bool
fn internal_equals(self, other: impl Into<IntPtr>) -> bool
Internal_Equals(::unity::IntPtr) overload
Sourcefn equals_2(self, other: impl Into<Gradient>) -> bool
fn equals_2(self, other: impl Into<Gradient>) -> bool
Equals(crate::unity_engine::gradient::Gradient) overload
Sourcefn get_hash_code(self) -> i32
fn get_hash_code(self) -> i32
GetHashCode() 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: IGradient> IGradientMethods for __T
Available on crate feature
unity_engine-gradient only.