pub struct GpioArrayHandle {
pub gpios: Box<[u32]>,
pub consumer: String,
pub flags: RequestFlags,
/* private fields */
}Expand description
A GPIO array handle acquired from the gpiochip
Fields§
§gpios: Box<[u32]>§consumer: String§flags: RequestFlagsImplementations§
Trait Implementations§
Source§impl AsRawFd for GpioArrayHandle
impl AsRawFd for GpioArrayHandle
Source§impl IntoRawFd for GpioArrayHandle
impl IntoRawFd for GpioArrayHandle
Source§fn into_raw_fd(self) -> RawFd
fn into_raw_fd(self) -> RawFd
Consumes this object, returning the raw underlying file descriptor. Read more
Auto Trait Implementations§
impl Freeze for GpioArrayHandle
impl RefUnwindSafe for GpioArrayHandle
impl Send for GpioArrayHandle
impl Sync for GpioArrayHandle
impl Unpin for GpioArrayHandle
impl UnwindSafe for GpioArrayHandle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more