Trait re_sdk::external::arrow2::array::PushUnchecked

pub trait PushUnchecked<A> {
    // Required method
    unsafe fn push_unchecked(&mut self, item: A);
}
Expand description

A trait describing the ability of a struct to receive new items.

Required Methods§

unsafe fn push_unchecked(&mut self, item: A)

Push a new element that holds the invariants of the struct.

§Safety

The items must uphold the invariants of the struct Read the specific implementation of the trait to understand what these are.

Implementors§

§

impl<M, I, T> PushUnchecked<Option<I>> for MutableFixedSizeListArray<M>
where M: MutableArray + Extend<Option<T>>, I: IntoIterator<Item = Option<T>>,