Source code

Revision control

Copy as Markdown

Other Tools

/// Windows-specific extensions to wrappers in `fs_err` for `std::fs` types.↩
pub mod fs {↩
use crate::{SourceDestError, SourceDestErrorKind};↩
use std::io;↩
use std::path::Path;↩
/// Wrapper for [std::os::windows::fs::symlink_dir](https://doc.rust-lang.org/std/os/windows/fs/fn.symlink_dir.html)↩
pub fn symlink_dir<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {↩
let src = src.as_ref();↩
let dst = dst.as_ref();↩
std::os::windows::fs::symlink_dir(src, dst)↩
.map_err(|err| SourceDestError::build(err, SourceDestErrorKind::SymlinkDir, src, dst))↩
}↩
/// Wrapper for [std::os::windows::fs::symlink_file](https://doc.rust-lang.org/std/os/windows/fs/fn.symlink_file.html)↩
pub fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {↩
let src = src.as_ref();↩
let dst = dst.as_ref();↩
std::os::windows::fs::symlink_file(src, dst)↩
.map_err(|err| SourceDestError::build(err, SourceDestErrorKind::SymlinkFile, src, dst))↩
}↩
/// Wrapper for [`std::os::windows::fs::FileExt`](https://doc.rust-lang.org/std/os/windows/fs/trait.FileExt.html).↩
///↩
/// The std traits might be extended in the future (See issue [#49961](https://github.com/rust-lang/rust/issues/49961#issuecomment-382751777)).↩
/// This trait is sealed and can not be implemented by other crates.↩
pub trait FileExt: crate::Sealed {↩
fn seek_read(&self, buf: &mut [u8], offset: u64) -> io::Result<usize>;↩
fn seek_write(&self, buf: &[u8], offset: u64) -> io::Result<usize>;↩
}↩
/// Wrapper for [`std::os::windows::fs::OpenOptionsExt`](https://doc.rust-lang.org/std/os/windows/fs/trait.OpenOptionsExt.html)↩
///↩
/// The std traits might be extended in the future (See issue [#49961](https://github.com/rust-lang/rust/issues/49961#issuecomment-382751777)).↩
/// This trait is sealed and can not be implemented by other crates.↩
pub trait OpenOptionsExt: crate::Sealed {↩
fn access_mode(&mut self, access: u32) -> &mut Self;↩
fn share_mode(&mut self, val: u32) -> &mut Self;↩
fn custom_flags(&mut self, flags: u32) -> &mut Self;↩
fn attributes(&mut self, val: u32) -> &mut Self;↩
fn security_qos_flags(&mut self, flags: u32) -> &mut Self;↩
}↩
}↩