Struct nix::dirent::DirectoryStream[][src]

pub struct DirectoryStream(_);

Directory Stream object

Trait Implementations

impl AsRef<DIR> for DirectoryStream
[src]

Performs the conversion.

impl Into<*mut DIR> for DirectoryStream
[src]

Consumes directory stream and return underlying directory pointer.

The pointer must be deallocated manually using libc::closedir

Performs the conversion.

impl Drop for DirectoryStream
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations