pub trait IOutlineMethods: IOutline {
// Provided methods
fn ctor(self) { ... }
fn modify_mesh(self, vh: impl Into<VertexHelper>) { ... }
}Provided Methods§
Sourcefn modify_mesh(self, vh: impl Into<VertexHelper>)
fn modify_mesh(self, vh: impl Into<VertexHelper>)
ModifyMesh(crate::unity_engine::ui::vertexhelper::VertexHelper) 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: IOutline> IOutlineMethods for __T
Available on crate feature
unity_engine-ui-outline only.