[src]

Module std::path::posix

POSIX file path handling

Path

Represents a POSIX file path

pub static SEP: char = '/'

The standard path separator character

 
pub static SEP_BYTE: u8 = SEP as u8

The standard path separator byte

 
is_sep

Returns whether the given char is a path separator

is_sep_byte

Returns whether the given byte is a path separator

Components

Iterator that yields successive components of a Path as &[u8]

RevComponents

Iterator that yields components of a Path in reverse as &[u8]

RevStrComponents

Iterator that yields components of a Path in reverse as Option<&str>

StrComponents

Iterator that yields successive components of a Path as Option<&str>