Struct ywasm::PrelimArrayIterator 
source · [−]pub struct PrelimArrayIterator(_);Implementations
sourceimpl PrelimArrayIterator
 
impl PrelimArrayIterator
pub fn next(&mut self) -> IteratorNext
Trait Implementations
sourceimpl Drop for PrelimArrayIterator
 
impl Drop for PrelimArrayIterator
sourceimpl From<PrelimArrayIterator> for JsValue
 
impl From<PrelimArrayIterator> for JsValue
sourcefn from(value: PrelimArrayIterator) -> Self
 
fn from(value: PrelimArrayIterator) -> Self
Converts to this type from the input type.
sourceimpl FromWasmAbi for PrelimArrayIterator
 
impl FromWasmAbi for PrelimArrayIterator
sourceimpl IntoWasmAbi for PrelimArrayIterator
 
impl IntoWasmAbi for PrelimArrayIterator
sourceimpl RefFromWasmAbi for PrelimArrayIterator
 
impl RefFromWasmAbi for PrelimArrayIterator
type Anchor = Ref<'static, PrelimArrayIterator>
type Anchor = Ref<'static, PrelimArrayIterator>
The type that holds the reference to 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 more
sourceunsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
 
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
Recover a Self::Anchor from Self::Abi. Read more
sourceimpl RefMutFromWasmAbi for PrelimArrayIterator
 
impl RefMutFromWasmAbi for PrelimArrayIterator
type Anchor = RefMut<'static, PrelimArrayIterator>
type Anchor = RefMut<'static, PrelimArrayIterator>
Same as RefFromWasmAbi::Anchor
sourceunsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
 
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as RefFromWasmAbi::ref_from_abi
sourceimpl WasmDescribe for PrelimArrayIterator
 
impl WasmDescribe for PrelimArrayIterator
Auto Trait Implementations
impl RefUnwindSafe for PrelimArrayIterator
impl !Send for PrelimArrayIterator
impl !Sync for PrelimArrayIterator
impl Unpin for PrelimArrayIterator
impl UnwindSafe for PrelimArrayIterator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi, 
 
impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi, 
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn return_abi(self) -> <T as ReturnWasmAbi>::Abi
 
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err. Read more