pub enum ContainerPathKind {
UnixAbsolute,
WindowsDriveAbsolute,
WindowsUnc,
Relative,
Deferred,
}Expand description
The lexical family of a container-side path.
Variants§
UnixAbsolute
A /-prefixed Unix container path.
WindowsDriveAbsolute
A drive-letter Windows container path.
WindowsUnc
A Windows UNC container path.
Relative
A relative path retained for later validation.
Deferred
A path whose shape depends on interpolation.
Trait Implementations§
Source§impl Clone for ContainerPathKind
impl Clone for ContainerPathKind
Source§fn clone(&self) -> ContainerPathKind
fn clone(&self) -> ContainerPathKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ContainerPathKind
Source§impl Debug for ContainerPathKind
impl Debug for ContainerPathKind
impl Eq for ContainerPathKind
Source§impl Hash for ContainerPathKind
impl Hash for ContainerPathKind
Source§impl PartialEq for ContainerPathKind
impl PartialEq for ContainerPathKind
impl StructuralPartialEq for ContainerPathKind
Auto Trait Implementations§
impl Freeze for ContainerPathKind
impl RefUnwindSafe for ContainerPathKind
impl Send for ContainerPathKind
impl Sync for ContainerPathKind
impl Unpin for ContainerPathKind
impl UnsafeUnpin for ContainerPathKind
impl UnwindSafe for ContainerPathKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more