#[repr(C)]pub struct ULFileSystem {
pub file_exists: ULFileSystemFileExistsCallback,
pub get_file_size: ULFileSystemGetFileSizeCallback,
pub get_file_mime_type: ULFileSystemGetFileMimeTypeCallback,
pub open_file: ULFileSystemOpenFileCallback,
pub close_file: ULFileSystemCloseFileCallback,
pub read_from_file: ULFileSystemReadFromFileCallback,
}Fields§
§file_exists: ULFileSystemFileExistsCallback§get_file_size: ULFileSystemGetFileSizeCallback§get_file_mime_type: ULFileSystemGetFileMimeTypeCallback§open_file: ULFileSystemOpenFileCallback§close_file: ULFileSystemCloseFileCallback§read_from_file: ULFileSystemReadFromFileCallbackTrait Implementations§
Source§impl Clone for ULFileSystem
impl Clone for ULFileSystem
Source§fn clone(&self) -> ULFileSystem
fn clone(&self) -> ULFileSystem
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ULFileSystem
impl Debug for ULFileSystem
impl Copy for ULFileSystem
Auto Trait Implementations§
impl Freeze for ULFileSystem
impl RefUnwindSafe for ULFileSystem
impl Send for ULFileSystem
impl Sync for ULFileSystem
impl Unpin for ULFileSystem
impl UnwindSafe for ULFileSystem
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