pub struct H3ListArrayBuilder<IX, O: OffsetSizeTrait = i64> { /* private fields */ }
Implementations§
Source§impl<IX, O: OffsetSizeTrait> H3ListArrayBuilder<IX, O>where
IX: H3IndexArrayValue,
impl<IX, O: OffsetSizeTrait> H3ListArrayBuilder<IX, O>where
IX: H3IndexArrayValue,
pub fn with_capacity(list_capacity: usize, values_capacity: usize) -> Self
pub fn append(&mut self, is_valid: bool)
pub fn values(&mut self) -> H3ArrayBuilder<'_, IX>
pub fn finish(self) -> Result<H3ListArray<IX, O>, Error>
Trait Implementations§
Source§impl<IX, O: OffsetSizeTrait> Default for H3ListArrayBuilder<IX, O>where
IX: H3IndexArrayValue,
impl<IX, O: OffsetSizeTrait> Default for H3ListArrayBuilder<IX, O>where
IX: H3IndexArrayValue,
Auto Trait Implementations§
impl<IX, O> Freeze for H3ListArrayBuilder<IX, O>
impl<IX, O> RefUnwindSafe for H3ListArrayBuilder<IX, O>where
IX: RefUnwindSafe,
O: RefUnwindSafe,
impl<IX, O> Send for H3ListArrayBuilder<IX, O>where
IX: Send,
impl<IX, O> Sync for H3ListArrayBuilder<IX, O>where
IX: Sync,
impl<IX, O> Unpin for H3ListArrayBuilder<IX, O>
impl<IX, O> UnwindSafe for H3ListArrayBuilder<IX, O>where
IX: UnwindSafe,
O: UnwindSafe,
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