pub enum FileHandle {
MemFile(MemFile),
VolFile(VolFile),
}Variants§
Trait Implementations§
Source§impl Debug for FileHandle
impl Debug for FileHandle
Source§impl From<MemFile> for FileHandle
impl From<MemFile> for FileHandle
Source§fn from(v: MemFile) -> FileHandle
fn from(v: MemFile) -> FileHandle
Converts to this type from the input type.
Source§impl From<VolFile> for FileHandle
impl From<VolFile> for FileHandle
Source§fn from(v: VolFile) -> FileHandle
fn from(v: VolFile) -> FileHandle
Converts to this type from the input type.
Source§impl TryInto<MemFile> for FileHandle
impl TryInto<MemFile> for FileHandle
Source§impl TryInto<VolFile> for FileHandle
impl TryInto<VolFile> for FileHandle
Source§impl VfsFile for FileHandle
impl VfsFile for FileHandle
fn readonly(&self) -> bool
fn in_memory(&self) -> bool
fn lock(&mut self, __enum_dispatch_arg_0: LockLevel) -> Result<(), ErrCtx>
fn unlock(&mut self, __enum_dispatch_arg_0: LockLevel) -> Result<(), ErrCtx>
fn file_size(&mut self) -> Result<usize, ErrCtx>
fn truncate(&mut self, __enum_dispatch_arg_0: usize) -> Result<(), ErrCtx>
fn write( &mut self, __enum_dispatch_arg_0: usize, __enum_dispatch_arg_1: &[u8], ) -> Result<usize, ErrCtx>
fn read( &mut self, __enum_dispatch_arg_0: usize, __enum_dispatch_arg_1: &mut [u8], ) -> Result<usize, ErrCtx>
Auto Trait Implementations§
impl Freeze for FileHandle
impl !RefUnwindSafe for FileHandle
impl Send for FileHandle
impl Sync for FileHandle
impl Unpin for FileHandle
impl !UnwindSafe for FileHandle
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more