pub struct GrowableMap<'a> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'a> From<GrowableMap<'a>> for MapArray
impl<'a> From<GrowableMap<'a>> for MapArray
Source§fn from(val: GrowableMap<'a>) -> Self
fn from(val: GrowableMap<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Growable<'a> for GrowableMap<'a>
impl<'a> Growable<'a> for GrowableMap<'a>
Source§fn extend_validity(&mut self, additional: usize)
fn extend_validity(&mut self, additional: usize)
Extends this
Growable with null elements, disregarding the bound arraysAuto Trait Implementations§
impl<'a> Freeze for GrowableMap<'a>
impl<'a> !RefUnwindSafe for GrowableMap<'a>
impl<'a> !Send for GrowableMap<'a>
impl<'a> !Sync for GrowableMap<'a>
impl<'a> Unpin for GrowableMap<'a>
impl<'a> !UnwindSafe for GrowableMap<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more