Struct git_tempfile::Registration [−][src]
pub struct Registration { /* fields omitted */ }
Expand description
A registered temporary file which will delete itself on drop or if the program is receiving signals that should cause it to terminate.
Note
Signals interrupting the calling thread right after taking ownership of the registered tempfile will cause all but this tempfile to be removed automatically. In the common case it will persist on disk as destructors were not called or didn’t get to remove the file.
In the best case the file is a true temporary with a non-clashing name that ‘only’ fills up the disk, in the worst case the temporary file is used as a lock file which may leave the repository in a locked state forever.
This kind of raciness exists whenever take()
is used and can’t be circumvented.
Implementations
pub fn at_path(
path: impl AsRef<Path>,
directory: ContainingDirectory,
cleanup: AutoRemove
) -> Result<Registration>
pub fn at_path(
path: impl AsRef<Path>,
directory: ContainingDirectory,
cleanup: AutoRemove
) -> Result<Registration>
Create a registered tempfile at the given path
, where path
includes the desired filename.
Depending on the directory
configuration, intermediate directories will be created, and depending on cleanup
empty
intermediate directories will be removed.
pub fn new(
containing_directory: impl AsRef<Path>,
directory: ContainingDirectory,
cleanup: AutoRemove
) -> Result<Registration>
pub fn new(
containing_directory: impl AsRef<Path>,
directory: ContainingDirectory,
cleanup: AutoRemove
) -> Result<Registration>
Create a registered tempfile within containing_directory
with a name that won’t clash, and clean it up as specified with cleanup
.
Control how to deal with intermediate directories with directory
.
Take ownership of the temporary file.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Registration
impl Send for Registration
impl Sync for Registration
impl Unpin for Registration
impl UnwindSafe for Registration