Struct alacritty::TemporaryFiles
source · pub(crate) struct TemporaryFiles {
pub(crate) socket_path: Option<PathBuf>,
pub(crate) log_file: Option<PathBuf>,
}
Expand description
Temporary files stored for Alacritty.
This stores temporary files to automate their destruction through its Drop
implementation.
Fields§
§socket_path: Option<PathBuf>
§log_file: Option<PathBuf>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for TemporaryFiles
impl Send for TemporaryFiles
impl Sync for TemporaryFiles
impl Unpin for TemporaryFiles
impl UnwindSafe for TemporaryFiles
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