Enum sgx_tstd::path::Prefix [−][src]
pub enum Prefix<'a> { Verbatim(&'a OsStr), VerbatimUNC(&'a OsStr, &'a OsStr), VerbatimDisk(u8), DeviceNS(&'a OsStr), UNC(&'a OsStr, &'a OsStr), Disk(u8), }
Windows path prefixes, e.g. C:
or \\server\share
.
Windows uses a variety of path prefix styles, including references to drive
volumes (like C:
), network shared folders (like \\server\share
), and
others. In addition, some path prefixes are "verbatim" (i.e. prefixed with
\\?\
), in which case /
is not treated as a separator and essentially
no normalization is performed.
Variants
Verbatim(&'a OsStr)
Verbatim prefix, e.g. \\?\cat_pics
.
Verbatim prefixes consist of \\?\
immediately followed by the given
component.
VerbatimUNC(&'a OsStr, &'a OsStr)
Verbatim prefix using Windows' Uniform Naming Convention,
e.g. \\?\UNC\server\share
.
Verbatim UNC prefixes consist of \\?\UNC\
immediately followed by the
server's hostname and a share name.
VerbatimDisk(u8)
Verbatim disk prefix, e.g. \\?\C:\
.
Verbatim disk prefixes consist of \\?\
immediately followed by the
drive letter and :\
.
DeviceNS(&'a OsStr)
Device namespace prefix, e.g. \\.\COM42
.
Device namespace prefixes consist of \\.\
immediately followed by the
device name.
UNC(&'a OsStr, &'a OsStr)
Prefix using Windows' Uniform Naming Convention, e.g.
\\server\share
.
UNC prefixes consist of the server's hostname and a share name.
Disk(u8)
Prefix C:
for the given disk drive.
Methods
impl<'a> Prefix<'a>
[src]
impl<'a> Prefix<'a>
pub fn is_verbatim(&self) -> bool
[src]
pub fn is_verbatim(&self) -> bool
Determines if the prefix is verbatim, i.e. begins with \\?\
.
Trait Implementations
impl<'a> Copy for Prefix<'a>
[src]
impl<'a> Copy for Prefix<'a>
impl<'a> Clone for Prefix<'a>
[src]
impl<'a> Clone for Prefix<'a>
fn clone(&self) -> Prefix<'a>
[src]
fn clone(&self) -> Prefix<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<'a> Debug for Prefix<'a>
[src]
impl<'a> Debug for Prefix<'a>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> Hash for Prefix<'a>
[src]
impl<'a> Hash for Prefix<'a>
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<'a> PartialOrd for Prefix<'a>
[src]
impl<'a> PartialOrd for Prefix<'a>
fn partial_cmp(&self, other: &Prefix<'a>) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Prefix<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Prefix<'a>) -> bool
[src]
fn lt(&self, other: &Prefix<'a>) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Prefix<'a>) -> bool
[src]
fn le(&self, other: &Prefix<'a>) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Prefix<'a>) -> bool
[src]
fn gt(&self, other: &Prefix<'a>) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Prefix<'a>) -> bool
[src]
fn ge(&self, other: &Prefix<'a>) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<'a> Ord for Prefix<'a>
[src]
impl<'a> Ord for Prefix<'a>
fn cmp(&self, other: &Prefix<'a>) -> Ordering
[src]
fn cmp(&self, other: &Prefix<'a>) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl<'a> PartialEq for Prefix<'a>
[src]
impl<'a> PartialEq for Prefix<'a>
fn eq(&self, other: &Prefix<'a>) -> bool
[src]
fn eq(&self, other: &Prefix<'a>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Prefix<'a>) -> bool
[src]
fn ne(&self, other: &Prefix<'a>) -> bool
This method tests for !=
.
impl<'a> Eq for Prefix<'a>
[src]
impl<'a> Eq for Prefix<'a>