pub struct FileHandle<Client>{
pub ino: InodeNo,
pub location: S3Location,
pub state: AsyncMutex<FileHandleState<Client>>,
pub open_pid: u32,
}Fields§
§ino: InodeNo§location: S3Location§state: AsyncMutex<FileHandleState<Client>>§open_pid: u32Process that created the handle
Implementations§
Source§impl<Client> FileHandle<Client>
impl<Client> FileHandle<Client>
Trait Implementations§
Auto Trait Implementations§
impl<Client> !Freeze for FileHandle<Client>
impl<Client> !RefUnwindSafe for FileHandle<Client>
impl<Client> Send for FileHandle<Client>
impl<Client> Sync for FileHandle<Client>
impl<Client> !Unpin for FileHandle<Client>
impl<Client> !UnsafeUnpin for FileHandle<Client>
impl<Client> !UnwindSafe for FileHandle<Client>
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