pub struct ArrayIterator { /* private fields */ }
Expand description
The Array Iterator object represents an iteration over an array. It implements the iterator protocol.
More information:
Trait Implementations§
Source§impl Clone for ArrayIterator
impl Clone for ArrayIterator
Source§fn clone(&self) -> ArrayIterator
fn clone(&self) -> ArrayIterator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArrayIterator
impl Debug for ArrayIterator
Source§impl Drop for ArrayIterator
impl Drop for ArrayIterator
Source§impl Trace for ArrayIterator
impl Trace for ArrayIterator
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
Auto Trait Implementations§
impl !Freeze for ArrayIterator
impl !RefUnwindSafe for ArrayIterator
impl !Send for ArrayIterator
impl !Sync for ArrayIterator
impl Unpin for ArrayIterator
impl !UnwindSafe for ArrayIterator
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