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

    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

Safety

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

Create a controller.

Get the number of controllers currently being managed.

Get a controller by index. Returns None

Get a Vec of all the controllers being managed.

Implementors