Struct yanix::dir::Dir[][src]

pub struct Dir(_);

Implementations

impl Dir[src]

pub fn from<F: IntoRawFd>(fd: F) -> Result<Self>[src]

Takes the ownership of the passed-in descriptor-based object, and creates a new instance of Dir.

pub fn seek(&mut self, loc: SeekLoc)[src]

Set the position of the directory stream, see seekdir(3).

pub fn rewind(&mut self)[src]

Reset directory stream, see rewinddir(3).

pub fn tell(&self) -> SeekLoc[src]

Get the current position in the directory stream.

If this location is given to Dir::seek, the entries up to the previously returned will be omitted and the iteration will start from the currently pending directory entry.

Trait Implementations

impl AsRawFd for Dir[src]

impl Clone for Dir[src]

impl Debug for Dir[src]

impl Drop for Dir[src]

impl Eq for Dir[src]

impl Hash for Dir[src]

impl PartialEq<Dir> for Dir[src]

impl Send for Dir[src]

impl StructuralEq for Dir[src]

impl StructuralPartialEq for Dir[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.