Struct current_dir::Cwd

source ·
pub struct Cwd { /* private fields */ }
Expand description

Wrapper type to help the usage of the current working directory for the process.

Implementations§

source§

impl Cwd

source

pub fn mutex() -> &'static Mutex<Self>

The Mutex ensuring the state of the current working directory.

It is a logic error to call env::set_current_dir() or env::current_dir() without this lock acquired.

source

pub fn get_expected(&self) -> Option<PathBuf>

Returns the expected current working directory if any. By default the only expectations set are when this crate produces a panic.

source

pub fn get(&self) -> Result<PathBuf>

Wrapper function to ensure env::current_dir() is called with the Cwd borrowed.

source

pub fn set<P: AsRef<Path>>(&mut self, path: P) -> Result<()>

Wrapper function to ensure env::set_current_dir() is called with the Cwd borrowed.

Trait Implementations§

source§

impl Debug for Cwd

source§

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

Formats the value using the given formatter. Read more
source§

impl<'lock> TryFrom<&'lock mut Cwd> for CwdGuard<'lock>

source§

fn try_from(cwd: &'lock mut Cwd) -> Result<Self, Self::Error>

Creates a CwdGuard mutably borrowing the locked Self.

§Errors

The current directory cannot be retrieved as per env::current_dir()

source§

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations§

§

impl !Freeze for Cwd

§

impl !RefUnwindSafe for Cwd

§

impl Send for Cwd

§

impl !Sync for Cwd

§

impl Unpin for Cwd

§

impl UnwindSafe for Cwd

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.