Enum std::path::Prefix

1.0.0 · source ·
pub enum Prefix<'a> {
    Verbatim(&'a OsStr),
    VerbatimUNC(&'a OsStr, &'a OsStr),
    VerbatimDisk(u8),
    DeviceNS(&'a OsStr),
    UNC(&'a OsStr, &'a OsStr),
    Disk(u8),
}
Expand description

Windows 路径前缀,例如 C:\\server\share

Windows 使用多种路径前缀样式,包括引用驱动卷 (如 C:)、网络共享文件夹 (如 \\server\share) 等。 另外,某些路径前缀是 “verbatim” (即以 \\?\ 前缀),在这种情况下,/ 视为分隔符,并且基本上不执行规范化。

Examples

use std::path::{Component, Path, Prefix};
use std::path::Prefix::*;
use std::ffi::OsStr;

fn get_path_prefix(s: &str) -> Prefix<'_> {
    let path = Path::new(s);
    match path.components().next().unwrap() {
        Component::Prefix(prefix_component) => prefix_component.kind(),
        _ => panic!(),
    }
}

assert_eq!(Verbatim(OsStr::new("pictures")),
           get_path_prefix(r"\\?\pictures\kittens"));
assert_eq!(VerbatimUNC(OsStr::new("server"), OsStr::new("share")),
           get_path_prefix(r"\\?\UNC\server\share"));
assert_eq!(VerbatimDisk(b'C'), get_path_prefix(r"\\?\c:\"));
assert_eq!(DeviceNS(OsStr::new("BrainInterface")),
           get_path_prefix(r"\\.\BrainInterface"));
assert_eq!(UNC(OsStr::new("server"), OsStr::new("share")),
           get_path_prefix(r"\\server\share"));
assert_eq!(Disk(b'C'), get_path_prefix(r"C:\Users\Rust\Pictures\Ferris"));
Run

Variants§

§

Verbatim(&'a OsStr)

逐字前缀,例如,\\?\cat_pics

逐字前缀由 \\?\ 组成,紧随其后是给定的组件。

§

VerbatimUNC(&'a OsStr, &'a OsStr)

逐字前缀使用 Windows 的 Uniform Naming Convention,例如 \\?\UNC\server\share

Verbatim UNC 前缀由 \\?\UNC\ 组成,其后紧跟服务器的主机名和共享名。

§

VerbatimDisk(u8)

逐字磁盘前缀,例如 \\?\C:

逐字磁盘前缀由 \\?\ 紧随其后的驱动器号和 : 组成。

§

DeviceNS(&'a OsStr)

设备命名空间前缀,例如 \\.\COM42

设备名称空间前缀由 \\.\ (可能使用 / 而不是 \) 组成,后跟设备名称。

§

UNC(&'a OsStr, &'a OsStr)

使用 Windows 的 Uniform Naming Convention 的前缀,例如 \\server\share.

UNC 前缀由服务器的主机名和共享名组成。

§

Disk(u8)

给定磁盘驱动器的前缀 C:

Implementations§

source§

impl<'a> Prefix<'a>

source

pub fn is_verbatim(&self) -> bool

确定前缀是否为逐字形式,即以 \\?\ 开头。

Examples
use std::path::Prefix::*;
use std::ffi::OsStr;

assert!(Verbatim(OsStr::new("pictures")).is_verbatim());
assert!(VerbatimUNC(OsStr::new("server"), OsStr::new("share")).is_verbatim());
assert!(VerbatimDisk(b'C').is_verbatim());
assert!(!DeviceNS(OsStr::new("BrainInterface")).is_verbatim());
assert!(!UNC(OsStr::new("server"), OsStr::new("share")).is_verbatim());
assert!(!Disk(b'C').is_verbatim());
Run

Trait Implementations§

source§

impl<'a> Clone for Prefix<'a>

source§

fn clone(&self) -> Prefix<'a>

返回值的副本。 Read more
source§

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

source 执行复制分配。 Read more
source§

impl<'a> Debug for Prefix<'a>

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl<'a> Hash for Prefix<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

将该值输入给定的 HasherRead more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

将这种类型的切片送入给定的 Hasher 中。 Read more
source§

impl<'a> Ord for Prefix<'a>

source§

fn cmp(&self, other: &Prefix<'a>) -> Ordering

此方法返回 selfother 之间的 OrderingRead more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

比较并返回两个值中的最大值。 Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

比较并返回两个值中的最小值。 Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

将值限制在某个时间间隔内。 Read more
source§

impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>

source§

fn eq(&self, other: &Prefix<'a>) -> bool

此方法测试 selfother 值是否相等,并由 == 使用。
source§

fn ne(&self, other: &Rhs) -> bool

此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
source§

impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>

source§

fn partial_cmp(&self, other: &Prefix<'a>) -> Option<Ordering>

如果存在,则此方法返回 selfother 值之间的顺序。 Read more
source§

fn lt(&self, other: &Rhs) -> bool

此方法测试的内容少于 (对于 selfother),并且由 < 操作员使用。 Read more
source§

fn le(&self, other: &Rhs) -> bool

此方法测试小于或等于 (对于 selfother),并且由 <= 运算符使用。 Read more
source§

fn gt(&self, other: &Rhs) -> bool

此方法测试大于 (对于 selfother),并且由 > 操作员使用。 Read more
source§

fn ge(&self, other: &Rhs) -> bool

此方法测试是否大于或等于 (对于 selfother),并且由 >= 运算符使用。 Read more
source§

impl<'a> Copy for Prefix<'a>

source§

impl<'a> Eq for Prefix<'a>

source§

impl<'a> StructuralEq for Prefix<'a>

source§

impl<'a> StructuralPartialEq for Prefix<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Prefix<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> UnwindSafe for Prefix<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。