Struct capsules::ninedof::NineDof [] [src]

pub struct NineDof<'a> {
    driver: &'a NineDof,
    apps: Grant<App>,
    current_app: Cell<Option<AppId>>,
}

Fields

Methods

impl<'a> NineDof<'a>
[src]

[src]

[src]

[src]

Trait Implementations

impl<'a> NineDofClient for NineDof<'a>
[src]

[src]

Signals a command has finished. The arguments will most likely be passed over the syscall interface to an application. Read more

impl<'a> Driver for NineDof<'a>
[src]

[src]

subscribe lets an application pass a callback to the driver to be called later. This returns ENOSUPPORT if not used. Read more

[src]

command instructs a driver to perform some action synchronously. This returns ENOSUPPORT if not used. Read more

[src]

allow lets an application give the driver access to a buffer in the application's memory. This returns ENOSUPPORT if not used. Read more