Struct stdweb::web::FileList[][src]

pub struct FileList(_);

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.

(JavaScript docs)

Methods

impl FileList
[src]

Returns the number of Files contained in this list.

(JavaScript docs)

Returns an iterator over the list.

Trait Implementations

impl Clone for FileList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FileList
[src]

Formats the value using the given formatter. Read more

impl PartialEq for FileList
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for FileList
[src]

impl InstanceOf for FileList
[src]

Checks whenever a given Reference if of type Self.

impl AsRef<Reference> for FileList
[src]

Performs the conversion.

impl ReferenceType for FileList
[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<FileList> for Reference
[src]

Performs the conversion.

impl TryFrom<FileList> for Reference
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Reference> for FileList
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl<'_r> TryFrom<&'_r Reference> for FileList
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Value> for FileList
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl<'_r> TryFrom<&'_r Value> for FileList
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl JsSerialize for FileList
[src]

impl IntoIterator for FileList
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a FileList
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations

impl Send for FileList

impl Sync for FileList