[−][src]Struct stdweb::web::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.
Methods
impl FileList[src]
pub fn len(&self) -> u32[src]
Returns the number of Files contained in this list.
pub fn iter(&self) -> FileIter[src]
Returns an iterator over the list.
Trait Implementations
impl JsSerialize for FileList[src]
impl TryFrom<FileList> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: FileList) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for FileList[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Reference> for FileList[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
impl TryFrom<Value> for FileList[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Value> for FileList[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
impl InstanceOf for FileList[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for FileList[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl Clone for FileList[src]
fn clone(&self) -> FileList[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl From<FileList> for Reference[src]
impl IntoIterator for FileList[src]
type Item = File
The type of the elements being iterated over.
type IntoIter = FileIter
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl<'a> IntoIterator for &'a FileList[src]
type Item = File
The type of the elements being iterated over.
type IntoIter = FileIter
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl Eq for FileList[src]
impl PartialEq<FileList> for FileList[src]
impl AsRef<Reference> for FileList[src]
impl Debug for FileList[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,