pub struct FileList(/* private fields */);
Expand description
An object of this type is returned by the files property of the HTML <input>
element;
this lets you access the list of files selected with the <input type="file">
element.
It’s also used for a list of files dropped into web content when using the drag and drop API.
Implementations§
Trait Implementations§
Source§impl InstanceOf for FileList
impl InstanceOf for FileList
Source§impl<'a> IntoIterator for &'a FileList
impl<'a> IntoIterator for &'a FileList
Source§impl IntoIterator for FileList
impl IntoIterator for FileList
Source§impl ReferenceType for FileList
impl ReferenceType for FileList
Source§unsafe fn from_reference_unchecked(reference: Reference) -> Self
unsafe fn from_reference_unchecked(reference: Reference) -> Self
Converts a given reference into a concrete reference-like wrapper.
Doesn’t do any type checking; highly unsafe to use!
impl Eq for FileList
impl JsSerialize for FileList
impl StructuralPartialEq for FileList
Auto Trait Implementations§
impl Freeze for FileList
impl RefUnwindSafe for FileList
impl Send for FileList
impl Sync for FileList
impl Unpin for FileList
impl UnwindSafe for FileList
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