Struct std::path::PrefixComponent

1.0.0 · source ·
pub struct PrefixComponent<'a> { /* private fields */ }
Expand description

包装 Windows 路径前缀及其未解析的字符串表示形式的结构体。

除了由 kind 返回的已解析 Prefix 信息外,PrefixComponent 还保存由 as_os_str 返回的原始和未解析的 OsStr 切片。

可以通过与 Component 上的 Prefix variant 匹配来获得此 struct 的实例。

在 Unix 上不会发生。

Examples

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

let path = Path::new(r"c:\you\later\");
match path.components().next().unwrap() {
    Component::Prefix(prefix_component) => {
        assert_eq!(Prefix::Disk(b'C'), prefix_component.kind());
        assert_eq!(OsStr::new("c:"), prefix_component.as_os_str());
    }
    _ => unreachable!(),
}
Run

Implementations§

source§

impl<'a> PrefixComponent<'a>

source

pub fn kind(&self) -> Prefix<'a>

返回已解析的前缀数据。

有关不同种类的前缀的更多信息,请参见 Prefix 的文档。

source

pub fn as_os_str(&self) -> &'a OsStr

返回此前缀的原始 OsStr 切片。

Trait Implementations§

source§

impl<'a> Clone for PrefixComponent<'a>

source§

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

返回值的副本。 Read more
source§

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

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

impl<'a> Debug for PrefixComponent<'a>

source§

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

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

impl Hash for PrefixComponent<'_>

source§

fn hash<H: Hasher>(&self, h: &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 Ord for PrefixComponent<'_>

source§

fn cmp(&self, other: &Self) -> 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<PrefixComponent<'a>> for PrefixComponent<'a>

source§

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

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

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

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

impl<'a> PartialOrd<PrefixComponent<'a>> for PrefixComponent<'a>

source§

fn partial_cmp(&self, other: &PrefixComponent<'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 PrefixComponent<'a>

source§

impl<'a> Eq for PrefixComponent<'a>

source§

impl<'a> StructuralEq for PrefixComponent<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for PrefixComponent<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> UnwindSafe for PrefixComponent<'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>

执行转换。