Struct gpiochip::GpioArrayHandle[][src]

pub struct GpioArrayHandle {
    pub gpios: Box<[u32]>,
    pub consumer: String,
    pub flags: RequestFlags,
    // some fields omitted
}

A GPIO array handle acquired from the gpiochip

Fields

Methods

impl GpioArrayHandle
[src]

Get GPIO values

Set GPIO values

Trait Implementations

impl IntoRawFd for GpioArrayHandle
[src]

Consumes this object, returning the raw underlying file descriptor. Read more

impl AsRawFd for GpioArrayHandle
[src]

Extracts the raw file descriptor. Read more

Auto Trait Implementations