pub struct DynMapView<'a> { /* private fields */ }Expand description
View over a map column.
Implementations§
Source§impl<'a> DynMapView<'a>
impl<'a> DynMapView<'a>
Sourcepub fn get(
&'a self,
index: usize,
) -> Result<(DynCellRef<'a>, Option<DynCellRef<'a>>), DynViewError>
pub fn get( &'a self, index: usize, ) -> Result<(DynCellRef<'a>, Option<DynCellRef<'a>>), DynViewError>
Return the key/value pair at index.
Trait Implementations§
Source§impl<'a> Clone for DynMapView<'a>
impl<'a> Clone for DynMapView<'a>
Source§fn clone(&self) -> DynMapView<'a>
fn clone(&self) -> DynMapView<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for DynMapView<'a>
impl<'a> !RefUnwindSafe for DynMapView<'a>
impl<'a> Send for DynMapView<'a>
impl<'a> Sync for DynMapView<'a>
impl<'a> Unpin for DynMapView<'a>
impl<'a> !UnwindSafe for DynMapView<'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