pub enum ReadContent {
Directory,
Symlink {
target: Utf8PathBuf,
},
File {
executable: bool,
size: u64,
offset: u64,
data: Vec<u8>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadContent
impl RefUnwindSafe for ReadContent
impl Send for ReadContent
impl Sync for ReadContent
impl Unpin for ReadContent
impl UnwindSafe for ReadContent
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