#[repr(C)]pub struct DrmSyncobjEventFd {
pub handle: RawDrmSyncobjHandle,
pub flags: SyncobjEventFdFlags,
pub point: u64,
pub fd: RawFd,
pub _padding: u32,
}Fields§
§handle: RawDrmSyncobjHandle§flags: SyncobjEventFdFlags§point: u64§fd: RawFd§_padding: u32Trait Implementations§
Source§impl Ioctl for DrmSyncobjEventFd
impl Ioctl for DrmSyncobjEventFd
Source§const IS_MUTATING: bool = true
const IS_MUTATING: bool = true
Does the
ioctl mutate any data in the userspace? Read moreSource§fn as_ptr(&mut self) -> *mut c_void
fn as_ptr(&mut self) -> *mut c_void
Get a pointer to the data to be passed to the
ioctl command. Read moreSource§unsafe fn output_from_ptr(
_out: IoctlOutput,
_extract_output: *mut c_void,
) -> Result<Self::Output>
unsafe fn output_from_ptr( _out: IoctlOutput, _extract_output: *mut c_void, ) -> Result<Self::Output>
Cast the output data to the correct type. Read more
Auto Trait Implementations§
impl Freeze for DrmSyncobjEventFd
impl RefUnwindSafe for DrmSyncobjEventFd
impl Send for DrmSyncobjEventFd
impl Sync for DrmSyncobjEventFd
impl Unpin for DrmSyncobjEventFd
impl UnsafeUnpin for DrmSyncobjEventFd
impl UnwindSafe for DrmSyncobjEventFd
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