Struct inotify::wrapper::INotify [] [src]

pub struct INotify {
    pub fd: c_int,
    // some fields omitted
}

Fields

Methods

impl INotify
[src]

Wait until events are available, then return them. This function will block until events are available. If you want it to return immediately, use available_events.

Returns available inotify events. If no events are available, this method will simply return a slice with zero events. If you want to wait for events to become available, call wait_for_events.

Trait Implementations

impl Drop for INotify
[src]

A method called when the value goes out of scope. Read more