Type Alias ObjectStorePath

Source
pub type ObjectStorePath = Path;
Available on crate feature polars-io only.

Aliased Type§

struct ObjectStorePath { /* private fields */ }

Implementations

§

impl Path

pub fn parse(path: impl AsRef<str>) -> Result<Path, Error>

Parse a string as a [Path], returning a [Error] if invalid, as defined on the docstring for [Path]

Note: this will strip any leading / or trailing /

pub fn from_filesystem_path(path: impl AsRef<Path>) -> Result<Path, Error>

Available on non-WebAssembly only.

Convert a filesystem path to a [Path] relative to the filesystem root

This will return an error if the path contains illegal character sequences as defined on the docstring for [Path] or does not exist

Note: this will canonicalize the provided path, resolving any symlinks

pub fn from_absolute_path(path: impl AsRef<Path>) -> Result<Path, Error>

Available on non-WebAssembly only.

Convert an absolute filesystem path to a [Path] relative to the filesystem root

This will return an error if the path contains illegal character sequences, as defined on the docstring for [Path], or base is not an absolute path

pub fn from_url_path(path: impl AsRef<str>) -> Result<Path, Error>

Parse a url encoded string as a [Path], returning a [Error] if invalid

This will return an error if the path contains illegal character sequences as defined on the docstring for [Path]

pub fn parts(&self) -> impl Iterator<Item = PathPart<'_>>

Returns the [PathPart] of this [Path]

pub fn filename(&self) -> Option<&str>

Returns the last path segment containing the filename stored in this [Path]

pub fn extension(&self) -> Option<&str>

Returns the extension of the file stored in this [Path], if any

pub fn prefix_match( &self, prefix: &Path, ) -> Option<impl Iterator<Item = PathPart<'_>>>

Returns an iterator of the [PathPart] of this [Path] after prefix

Returns None if the prefix does not match

pub fn prefix_matches(&self, prefix: &Path) -> bool

Returns true if this [Path] starts with prefix

pub fn child<'a>(&self, child: impl Into<PathPart<'a>>) -> Path

Creates a new child of this [Path]

Trait Implementations

§

impl AsRef<str> for Path

§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Clone for Path

§

fn clone(&self) -> Path

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Path

§

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

Formats the value using the given formatter. Read more
§

impl Default for Path

§

fn default() -> Path

Returns the “default value” for a type. Read more
§

impl Display for Path

§

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

Formats the value using the given formatter. Read more
§

impl From<&str> for Path

§

fn from(path: &str) -> Path

Converts to this type from the input type.
§

impl From<String> for Path

§

fn from(path: String) -> Path

Converts to this type from the input type.
§

impl<'a, I> FromIterator<I> for Path
where I: Into<PathPart<'a>>,

§

fn from_iter<T>(iter: T) -> Path
where T: IntoIterator<Item = I>,

Creates a value from an iterator. Read more
§

impl Hash for Path

§

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

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for Path

§

fn cmp(&self, other: &Path) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

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

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

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

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
§

impl PartialEq for Path

§

fn eq(&self, other: &Path) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialOrd for Path

§

fn partial_cmp(&self, other: &Path) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Eq for Path

§

impl StructuralPartialEq for Path