pub enum TildeExpr {
Home,
UserHome(String),
WorkingDir,
OldWorkingDir,
NthDirFromTopOfDirStack {
n: usize,
plus_used: bool,
},
NthDirFromBottomOfDirStack {
n: usize,
},
}Expand description
Represents an expandable tilde expression (e.g., ~).
Variants§
Home
~
UserHome(String)
~<user>
WorkingDir
~+
OldWorkingDir
~-
NthDirFromTopOfDirStack
Represents a tilde expansion of the form ~+N, referring to the Nth directory in
the shell’s directory stack, starting at the top of the stack. Note that the directory
stack is expected to contains the current working directory as its topmost entry.
Fields
NthDirFromBottomOfDirStack
Represents a tilde expansion of the form ~-N, referring to the Nth directory in
the shell’s directory stack, starting at the bottom of the stack.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TildeExpr
impl RefUnwindSafe for TildeExpr
impl Send for TildeExpr
impl Sync for TildeExpr
impl Unpin for TildeExpr
impl UnsafeUnpin for TildeExpr
impl UnwindSafe for TildeExpr
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