Struct polars_core::chunked_array::object::ObjectArray [−][src]
pub struct ObjectArray<T> where
T: PolarsObject, { /* fields omitted */ }
This is supported on crate feature
object
only.Implementations
Get a value at a certain index location
Safety
This does not any bound checks. The caller needs to ensure the index is within the size of the array.
Trait Implementations
The DataType
of the Array
. In combination with Array::as_any
, this can be
used to downcast trait objects (dyn Array
) to concrete arrays. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for ObjectArray<T> where
T: RefUnwindSafe,
impl<T> Send for ObjectArray<T>
impl<T> Sync for ObjectArray<T>
impl<T> Unpin for ObjectArray<T>
impl<T> UnwindSafe for ObjectArray<T> where
T: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more