[][src]Struct kiss3d::resource::PlanarMeshManager

pub struct PlanarMeshManager { /* fields omitted */ }

The mesh manager.

Upon construction, it contains:

It keeps a cache of already-loaded meshes. Note that this is only a cache, nothing more. Thus, its usage is not required to load meshes.

Methods

impl PlanarMeshManager[src]

pub fn new() -> PlanarMeshManager[src]

Creates a new mesh manager.

pub fn get_global_manager<T, F: FnMut(&mut PlanarMeshManager) -> T>(f: F) -> T[src]

Mutably applies a function to the mesh manager.

pub fn get(&mut self, name: &str) -> Option<Rc<RefCell<PlanarMesh>>>[src]

Get a mesh with the specified name. Returns None if the mesh is not registered.

pub fn add(&mut self, mesh: Rc<RefCell<PlanarMesh>>, name: &str)[src]

Adds a mesh with the specified name to this cache.

pub fn remove(&mut self, name: &str)[src]

Removes a mesh from this cache.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> Downcast for T where
    T: Any

impl<T> Erased for T