PlatformPath

Trait PlatformPath 

Source
pub trait PlatformPath {
    // Required methods
    fn separator(&self) -> char;
    fn is_absolute(&self) -> bool;
    fn to_platform_specific(&self) -> String;
}
Expand description

Platform-specific path operations

Required Methods§

Source

fn separator(&self) -> char

Get platform-specific path separator

Source

fn is_absolute(&self) -> bool

Check if path is absolute

Source

fn to_platform_specific(&self) -> String

Convert to platform-specific canonical path

Implementors§