Trait nu_path::form::PathForm

source ·
pub trait PathForm: Sealed { }
Expand description

A marker trait for the different kinds of path forms. Each form has its own invariants that are guaranteed be upheld. The list of path forms are:

  • Any: a path with no invariants. It may be a relative or an absolute path.
  • Relative: a strictly relative path.
  • Absolute: a strictly absolute path.
  • Canonical: a path that must be in canonicalized form.

Object Safety§

This trait is not object safe.

Implementors§