Struct inotify::WatchDescriptor[][src]

pub struct WatchDescriptor { /* fields omitted */ }

Represents a watch on an inode

Can be obtained from Inotify::add_watch or from an Event. A watch descriptor can be used to get inotify to stop watching an inode by passing it to Inotify::rm_watch.

Trait Implementations

impl Clone for WatchDescriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WatchDescriptor
[src]

Formats the value using the given formatter. Read more

impl Eq for WatchDescriptor
[src]

impl PartialEq for WatchDescriptor
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for WatchDescriptor
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations