Struct web_sys::FileSystemDirectoryReader
source · #[repr(transparent)]pub struct FileSystemDirectoryReader { /* private fields */ }Expand description
The FileSystemDirectoryReader object
This API requires the following crate features to be activated: FileSystemDirectoryReader
Implementations§
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
sourcepub fn read_entries_with_file_system_entries_callback(
&self,
success_callback: &FileSystemEntriesCallback
) -> Result<(), JsValue>
pub fn read_entries_with_file_system_entries_callback(
&self,
success_callback: &FileSystemEntriesCallback
) -> Result<(), JsValue>
The readEntries() method
This API requires the following crate features to be activated: FileSystemDirectoryReader, FileSystemEntriesCallback
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
sourcepub fn read_entries_with_file_system_entries_callback_and_callback(
&self,
success_callback: &FileSystemEntriesCallback,
error_callback: &Function
) -> Result<(), JsValue>
pub fn read_entries_with_file_system_entries_callback_and_callback(
&self,
success_callback: &FileSystemEntriesCallback,
error_callback: &Function
) -> Result<(), JsValue>
The readEntries() method
This API requires the following crate features to be activated: FileSystemDirectoryReader, FileSystemEntriesCallback
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
sourcepub fn read_entries_with_callback_and_error_callback(
&self,
success_callback: &Function,
error_callback: &ErrorCallback
) -> Result<(), JsValue>
pub fn read_entries_with_callback_and_error_callback(
&self,
success_callback: &Function,
error_callback: &ErrorCallback
) -> Result<(), JsValue>
The readEntries() method
This API requires the following crate features to be activated: ErrorCallback, FileSystemDirectoryReader
source§impl FileSystemDirectoryReader
impl FileSystemDirectoryReader
sourcepub fn read_entries_with_file_system_entries_callback_and_error_callback(
&self,
success_callback: &FileSystemEntriesCallback,
error_callback: &ErrorCallback
) -> Result<(), JsValue>
pub fn read_entries_with_file_system_entries_callback_and_error_callback(
&self,
success_callback: &FileSystemEntriesCallback,
error_callback: &ErrorCallback
) -> Result<(), JsValue>
The readEntries() method
This API requires the following crate features to be activated: ErrorCallback, FileSystemDirectoryReader, FileSystemEntriesCallback
Trait Implementations§
source§impl AsRef<JsValue> for FileSystemDirectoryReader
impl AsRef<JsValue> for FileSystemDirectoryReader
source§impl AsRef<Object> for FileSystemDirectoryReader
impl AsRef<Object> for FileSystemDirectoryReader
source§impl Clone for FileSystemDirectoryReader
impl Clone for FileSystemDirectoryReader
source§fn clone(&self) -> FileSystemDirectoryReader
fn clone(&self) -> FileSystemDirectoryReader
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FileSystemDirectoryReader
impl Debug for FileSystemDirectoryReader
source§impl From<FileSystemDirectoryReader> for JsValue
impl From<FileSystemDirectoryReader> for JsValue
source§fn from(obj: FileSystemDirectoryReader) -> JsValue
fn from(obj: FileSystemDirectoryReader) -> JsValue
source§impl From<FileSystemDirectoryReader> for Object
impl From<FileSystemDirectoryReader> for Object
source§fn from(obj: FileSystemDirectoryReader) -> Object
fn from(obj: FileSystemDirectoryReader) -> Object
source§impl From<JsValue> for FileSystemDirectoryReader
impl From<JsValue> for FileSystemDirectoryReader
source§fn from(obj: JsValue) -> FileSystemDirectoryReader
fn from(obj: JsValue) -> FileSystemDirectoryReader
source§impl<'a> IntoWasmAbi for &'a FileSystemDirectoryReader
impl<'a> IntoWasmAbi for &'a FileSystemDirectoryReader
source§impl JsCast for FileSystemDirectoryReader
impl JsCast for FileSystemDirectoryReader
source§fn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
instanceof check to see whether the JsValue
provided is an instance of this type. Read moresource§fn unchecked_from_js(val: JsValue) -> Self
fn unchecked_from_js(val: JsValue) -> Self
source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
fn unchecked_from_js_ref(val: &JsValue) -> &Self
source§fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
fn is_instance_of<T>(&self) -> boolwhere
T: JsCast,
T. Read moresource§fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
T. Read moresource§fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
T. Read moresource§fn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
source§impl<'a> OptionIntoWasmAbi for &'a FileSystemDirectoryReader
impl<'a> OptionIntoWasmAbi for &'a FileSystemDirectoryReader
source§impl RefFromWasmAbi for FileSystemDirectoryReader
impl RefFromWasmAbi for FileSystemDirectoryReader
§type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
Self are recovered from.§type Anchor = ManuallyDrop<FileSystemDirectoryReader>
type Anchor = ManuallyDrop<FileSystemDirectoryReader>
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read moreAuto Trait Implementations§
impl RefUnwindSafe for FileSystemDirectoryReader
impl Send for FileSystemDirectoryReader
impl Sync for FileSystemDirectoryReader
impl Unpin for FileSystemDirectoryReader
impl UnwindSafe for FileSystemDirectoryReader
Blanket Implementations§
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abisource§fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more