Struct avec::AVecMapGuard [] [src]

pub struct AVecMapGuard<'a, T: 'a> { /* fields omitted */ }

Result of AVec::map(). While this reference is valid, the associated AVec will panic on concurrent reads.

Methods

impl<'a, T> AVecMapGuard<'a, T>
[src]

Returns the actual range on the associated AVec mapped by this guard.

Returns the length of the mapped range.

Sets an element within the mapped ranged of 0 <= index < size().

Trait Implementations

impl<'a, T> Drop for AVecMapGuard<'a, T>
[src]

A method called when the value goes out of scope. Read more