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

pub struct DirectoryStream(_);

Directory Stream object

Trait Implementations

impl Debug for DirectoryStream
[src]

[src]

Formats the value using the given formatter. Read more

impl AsRef<DIR> for DirectoryStream
[src]

[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

[src]

Performs the conversion.

impl Drop for DirectoryStream
[src]

[src]

Executes the destructor for this type. Read more

Auto Trait Implementations