Skip to main content

IMeshFilterMethods

Trait IMeshFilterMethods 

Source
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§

Source

fn dont_strip_mesh_filter(self)

DontStripMeshFilter() overload

Source

fn get_shared_mesh(self) -> Mesh

get_sharedMesh() overload

Source

fn set_shared_mesh(self, value: impl Into<Mesh>)

set_sharedMesh(crate::unity_engine::mesh::Mesh) overload

Source

fn get_mesh(self) -> Mesh

get_mesh() overload

Source

fn set_mesh(self, value: impl Into<Mesh>)

set_mesh(crate::unity_engine::mesh::Mesh) overload

Source

fn ctor(self)

.ctor() 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: IMeshFilter> IMeshFilterMethods for __T

Available on crate feature unity_engine-meshfilter only.