Struct glob::GlobError [] [src]

pub struct GlobError {
    // some fields omitted
}

A glob iteration error.

This is typically returned when a particular path cannot be read to determine if its contents match the glob pattern. This is possible if the program lacks the permissions, for example.

Methods

impl GlobError
[src]

fn path(&self) -> &Path

The Path that the error corresponds to.

fn error(&self) -> &Error

The error in question.

Trait Implementations

impl Debug for GlobError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for GlobError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.