pub trait IMeshFilterMethods: IMeshFilter {
// Provided methods
fn dont_strip_mesh_filter(self) { ... }
fn get_shared_mesh(self) -> Mesh { ... }
fn set_shared_mesh(self, value: impl Into<Mesh>) { ... }
fn get_mesh(self) -> Mesh { ... }
fn set_mesh(self, value: impl Into<Mesh>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn dont_strip_mesh_filter(self)
fn dont_strip_mesh_filter(self)
DontStripMeshFilter() overload
get_sharedMesh() overload
set_sharedMesh(crate::unity_engine::mesh::Mesh) 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: IMeshFilter> IMeshFilterMethods for __T
Available on crate feature
unity_engine-meshfilter only.