[−][src]Struct js_sys::IteratorNext
The result of calling next()
on a JS iterator.
Implementations
impl IteratorNext
[src][−]
pub fn done(&self) -> bool
[src][−]
Has the value true
if the iterator is past the end of the iterated
sequence. In this case value optionally specifies the return value of
the iterator.
Has the value false
if the iterator was able to produce the next value
in the sequence. This is equivalent of not specifying the done property
altogether.
impl IteratorNext
[src][−]
pub fn value(&self) -> JsValue
[src][−]
Any JavaScript value returned by the iterator. Can be omitted when done is true.
Methods from Deref<Target = Object>
pub fn constructor(&self) -> Function
[src][−]
The constructor property returns a reference to the Object
constructor
function that created the instance object.
pub fn has_own_property(&self, property: &JsValue) -> bool
[src][−]
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
pub fn is_prototype_of(&self, value: &JsValue) -> bool
[src][−]
The isPrototypeOf()
method checks if an object exists in another
object's prototype chain.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
[src][−]
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
pub fn to_locale_string(&self) -> JsString
[src][−]
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
pub fn to_string(&self) -> JsString
[src][−]
The toString()
method returns a string representing the object.
pub fn value_of(&self) -> Object
[src][−]
The valueOf()
method returns the primitive value of the
specified object.
Trait Implementations
impl AsRef<IteratorNext> for IteratorNext
[src][+]
impl AsRef<JsValue> for IteratorNext
[src][+]
impl AsRef<Object> for IteratorNext
[src][+]
impl Clone for IteratorNext
[src][+]
impl Debug for IteratorNext
[src][+]
impl Deref for IteratorNext
[src][+]
impl Eq for IteratorNext
[src]
impl From<IteratorNext> for JsValue
[src][+]
impl From<IteratorNext> for Object
[src][+]
impl From<JsValue> for IteratorNext
[src][+]
impl FromWasmAbi for IteratorNext
[src][+]
impl IntoWasmAbi for IteratorNext
[src][+]
impl<'a> IntoWasmAbi for &'a IteratorNext
[src][+]
impl JsCast for IteratorNext
[src][+]
impl OptionFromWasmAbi for IteratorNext
[src][+]
impl OptionIntoWasmAbi for IteratorNext
[src][+]
impl<'a> OptionIntoWasmAbi for &'a IteratorNext
[src][+]
impl PartialEq<IteratorNext> for IteratorNext
[src][+]
impl RefFromWasmAbi for IteratorNext
[src][+]
impl StructuralEq for IteratorNext
[src]
impl StructuralPartialEq for IteratorNext
[src]
impl WasmDescribe for IteratorNext
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for IteratorNext
impl !Send for IteratorNext
impl !Sync for IteratorNext
impl Unpin for IteratorNext
impl UnwindSafe for IteratorNext
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src][+]
T: IntoWasmAbi,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,