Struct cargo::util::Filesystem [−][src]
A “filesystem” is intended to be a globally shared, hence locked, resource in Cargo.
The Path
of a filesystem cannot be learned unless it’s done in a locked
fashion, and otherwise functions on this structure are prepared to handle
concurrent invocations across multiple instances of Cargo.
Implementations
impl Filesystem
[src]
pub fn new(path: PathBuf) -> Filesystem
[src]
Creates a new filesystem to be rooted at the given path.
pub fn join<T: AsRef<Path>>(&self, other: T) -> Filesystem
[src]
Like Path::join
, creates a new filesystem rooted at this filesystem
joined with the given path.
pub fn push<T: AsRef<Path>>(&mut self, other: T)
[src]
Like Path::push
, pushes a new path component onto this filesystem.
pub fn into_path_unlocked(self) -> PathBuf
[src]
Consumes this filesystem and returns the underlying PathBuf
.
Note that this is a relatively dangerous operation and should be used with great caution!.
pub fn as_path_unlocked(&self) -> &Path
[src]
Returns the underlying Path
.
Note that this is a relatively dangerous operation and should be used with great caution!.
pub fn create_dir(&self) -> CargoResult<()>
[src]
Creates the directory pointed to by this filesystem.
Handles errors where other Cargo processes are also attempting to concurrently create this directory.
pub fn display(&self) -> Display<'_>
[src]
Returns an adaptor that can be used to print the path of this filesystem.
pub fn open_rw<P>(
&self,
path: P,
config: &Config,
msg: &str
) -> CargoResult<FileLock> where
P: AsRef<Path>,
[src]
&self,
path: P,
config: &Config,
msg: &str
) -> CargoResult<FileLock> where
P: AsRef<Path>,
Opens exclusive access to a file, returning the locked version of a file.
This function will create a file at path
if it doesn’t already exist
(including intermediate directories), and then it will acquire an
exclusive lock on path
. If the process must block waiting for the
lock, the msg
is printed to config
.
The returned file can be accessed to look at the path and also has read/write access to the underlying file.
pub fn open_ro<P>(
&self,
path: P,
config: &Config,
msg: &str
) -> CargoResult<FileLock> where
P: AsRef<Path>,
[src]
&self,
path: P,
config: &Config,
msg: &str
) -> CargoResult<FileLock> where
P: AsRef<Path>,
Opens shared access to a file, returning the locked version of a file.
This function will fail if path
doesn’t already exist, but if it does
then it will acquire a shared lock on path
. If the process must block
waiting for the lock, the msg
is printed to config
.
The returned file can be accessed to look at the path and also has read access to the underlying file. Any writes to the file will return an error.
Trait Implementations
impl Clone for Filesystem
[src]
fn clone(&self) -> Filesystem
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Filesystem
[src]
impl PartialEq<Path> for Filesystem
[src]
Auto Trait Implementations
impl RefUnwindSafe for Filesystem
impl Send for Filesystem
impl Sync for Filesystem
impl Unpin for Filesystem
impl UnwindSafe for Filesystem
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,