pub struct Entries<'a>(/* private fields */);Expand description
A Map’s entries, in ascending key order.
Opaque so that the key-ordered storage behind it stays the runtime’s business; what it promises is the order, which is the order a Cove program iterating the same map sees.
Implementations§
Trait Implementations§
impl<'a> Copy for Entries<'a>
Source§impl<'a> IntoIterator for Entries<'a>
impl<'a> IntoIterator for Entries<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Entries<'a>
impl<'a> !Send for Entries<'a>
impl<'a> !Sync for Entries<'a>
impl<'a> !UnwindSafe for Entries<'a>
impl<'a> Freeze for Entries<'a>
impl<'a> Unpin for Entries<'a>
impl<'a> UnsafeUnpin for Entries<'a>
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