pub trait ControllerManager: Class<PxControllerManager> + Sized {
    type Controller: Controller;

    // Provided methods
    unsafe fn from_raw(ptr: *mut PxControllerManager) -> Option<Owner<Self>> { ... }
    fn create_controller(
        &mut self,
        desc: Owner<<Self::Controller as Controller>::Descriptor>
    ) -> Option<&mut Self::Controller> { ... }
    fn get_nb_controllers(&self) -> u32 { ... }
    fn get_controller(&mut self, idx: u32) -> Option<&mut Self::Controller> { ... }
    fn get_controllers(&mut self) -> Vec<&mut Self::Controller> { ... }
}

Required Associated Types§

Provided Methods§

source

unsafe fn from_raw(ptr: *mut PxControllerManager) -> Option<Owner<Self>>

Safety

the pointee will be dropped when the Owner is dropped. Use into_ptr to retrieve the pointer from the Owner without dropping it.

source

fn create_controller( &mut self, desc: Owner<<Self::Controller as Controller>::Descriptor> ) -> Option<&mut Self::Controller>

Create a controller.

source

fn get_nb_controllers(&self) -> u32

Get the number of controllers currently being managed.

source

fn get_controller(&mut self, idx: u32) -> Option<&mut Self::Controller>

Get a controller by index. Returns None

source

fn get_controllers(&mut self) -> Vec<&mut Self::Controller>

Get a Vec of all the controllers being managed.

Implementors§