Enum std::path::windows::PathPrefixExperimental [-]  [+] [src]

pub enum PathPrefix {
    VerbatimPrefix(uint),
    VerbatimUNCPrefix(uint, uint),
    VerbatimDiskPrefix,
    DeviceNSPrefix(uint),
    UNCPrefix(uint, uint),
    DiskPrefix,
}

Prefix types for Path

Variants

VerbatimPrefix

Prefix \\?\, uint is the length of the following component

VerbatimUNCPrefix

Prefix \\?\UNC\, uints are the lengths of the UNC components

VerbatimDiskPrefix

Prefix \\?\C:\ (for any alphabetic character)

DeviceNSPrefix

Prefix \\.\, uint is the length of the following component

UNCPrefix

UNC prefix \\server\share, uints are the lengths of the server/share

DiskPrefix

Prefix C: for any alphabetic character

Trait Implementations

Derived Implementations

impl Show for PathPrefix

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

impl Clone for PathPrefix

fn clone(&self) -> PathPrefix

fn clone_from(&mut self, source: &Self)

impl PartialEq for PathPrefix

fn eq(&self, __arg_0: &PathPrefix) -> bool

fn ne(&self, __arg_0: &PathPrefix) -> bool

impl Copy for PathPrefix