Docs.rs
polars-arrow-0.44.2
polars-arrow 0.44.2
Permalink
Docs.rs crate page
MIT AND Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
ritchie46
jorgecarleitao
Dependencies
ahash >=0.8.5
normal
polars-arrow-format ^0.1.0
normal
optional
async-stream ^0.3
normal
optional
atoi ^2
normal
optional
atoi_simd ^0.15.5
normal
optional
avro-schema ^0.3
normal
optional
bytemuck ^1.11
normal
chrono ^0.4.31
normal
chrono-tz ^0.8.1
normal
optional
dyn-clone ^1
normal
either ^1.11
normal
ethnum ^1.3.2
normal
fast-float ^0.2
normal
optional
futures ^0.3.25
normal
optional
hashbrown ^0.15.0
normal
hex ^0.4.3
normal
optional
indexmap ^2
normal
optional
itoa ^1.0.6
normal
optional
itoap ^1
normal
optional
lz4 ^1.24
normal
optional
multiversion ^0.7
normal
optional
num-traits ^0.2
normal
parking_lot ^0.12
normal
polars-error ^0.44.2
normal
polars-schema ^0.44.2
normal
polars-utils ^0.44.2
normal
regex ^1.9
normal
optional
regex-syntax ^0.8
normal
optional
ryu ^1.0.13
normal
optional
serde ^1.0.188
normal
optional
simdutf8 ^0.1.4
normal
streaming-iterator ^0.1.9
normal
strength_reduce ^0.2
normal
optional
strum_macros ^0.26
normal
tokio ^1.26
normal
optional
zstd ^0.13
normal
optional
criterion ^0.5
dev
crossbeam-channel ^0.5.8
dev
doc-comment ^0.3
dev
flate2 ^1
dev
proptest ^1
dev
rand ^0.8
dev
sample-arrow2 ^0.17
dev
sample-std ^0.2
dev
sample-test ^0.2
dev
tokio ^1.26
dev
tokio-util ^0.7.8
dev
version_check ^0.9.4
build
getrandom ^0.2
normal
Versions
66.4%
of the crate is documented
Platform
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
polars_
arrow
0.44.2
Utf8
View
Array
Aliased type
Methods
to_binview
Trait Implementations
ArrayFromIter<Option<T>>
ArrayFromIter<T>
Debug
ParameterFreeDtypeStaticArray
StaticArray
In polars_
arrow::
array
polars_arrow
::
array
Type Alias
Utf8ViewArray
Copy item path
Source
pub type Utf8ViewArray =
BinaryViewArrayGeneric
<
str
>;
Aliased Type
§
struct Utf8ViewArray {
/* private fields */
}
Implementations
§
Source
§
impl
Utf8ViewArray
Source
pub fn
to_binview
(&self) ->
BinaryViewArray
Trait Implementations
§
Source
§
impl<T: StrIntoBytes>
ArrayFromIter
<
Option
<T>> for
Utf8ViewArray
Source
§
fn
arr_from_iter
<I:
IntoIterator
<Item =
Option
<T>>>(iter: I) -> Self
Source
§
fn
arr_from_iter_trusted
<I>(iter: I) -> Self
where I:
IntoIterator
<Item =
Option
<T>>, I::
IntoIter
:
TrustedLen
,
Source
§
fn
try_arr_from_iter
<E, I:
IntoIterator
<Item =
Result
<
Option
<T>, E>>>( iter: I, ) ->
Result
<Self, E>
Source
§
fn
try_arr_from_iter_trusted
<E, I>(iter: I) ->
Result
<Self, E>
where I:
IntoIterator
<Item =
Result
<T, E>>, I::
IntoIter
:
TrustedLen
,
Source
§
impl<T: StrIntoBytes>
ArrayFromIter
<T> for
Utf8ViewArray
Source
§
fn
arr_from_iter
<I:
IntoIterator
<Item = T>>(iter: I) -> Self
Source
§
fn
arr_from_iter_trusted
<I>(iter: I) -> Self
where I:
IntoIterator
<Item = T>, I::
IntoIter
:
TrustedLen
,
Source
§
fn
try_arr_from_iter
<E, I:
IntoIterator
<Item =
Result
<T, E>>>( iter: I, ) ->
Result
<Self, E>
Source
§
fn
try_arr_from_iter_trusted
<E, I>(iter: I) ->
Result
<Self, E>
where I:
IntoIterator
<Item =
Result
<T, E>>, I::
IntoIter
:
TrustedLen
,
Source
§
impl
Debug
for
Utf8ViewArray
Source
§
fn
fmt
(&self, f: &mut
Formatter
<'_>) ->
Result
Formats the value using the given formatter.
Read more
Source
§
impl
ParameterFreeDtypeStaticArray
for
Utf8ViewArray
Source
§
fn
get_dtype
() ->
ArrowDataType
Source
§
impl
StaticArray
for
Utf8ViewArray
Source
§
type
ValueT
<'a> = &'a
str
Source
§
type
ZeroableValueT
<'a> =
Option
<&'a
str
>
Source
§
type
ValueIterT
<'a> =
ArrayValuesIter
<'a,
BinaryViewArrayGeneric
<
str
>>
Source
§
unsafe fn
value_unchecked
(&self, idx:
usize
) -> Self::
ValueT
<'_>
Safety
Read more
Source
§
fn
iter
( &self, ) ->
ZipValidity
<Self::
ValueT
<'_>, Self::
ValueIterT
<'_>,
BitmapIter
<'_>>
ⓘ
Source
§
fn
values_iter
(&self) -> Self::
ValueIterT
<'_>
Source
§
fn
with_validity_typed
(self, validity:
Option
<
Bitmap
>) -> Self
Source
§
fn
full_null
(length:
usize
, dtype:
ArrowDataType
) -> Self
Source
§
fn
full
(length:
usize
, value: Self::
ValueT
<'_>, _dtype:
ArrowDataType
) -> Self
Source
§
fn
get
(&self, idx:
usize
) ->
Option
<Self::
ValueT
<'_>>
Source
§
unsafe fn
get_unchecked
(&self, idx:
usize
) ->
Option
<Self::
ValueT
<'_>>
Safety
Read more
Source
§
fn
last
(&self) ->
Option
<Self::
ValueT
<'_>>
Source
§
fn
value
(&self, idx:
usize
) -> Self::
ValueT
<'_>
Source
§
fn
as_slice
(&self) ->
Option
<&[Self::
ValueT
<'_>]>
Source
§
fn
from_vec
(v:
Vec
<Self::
ValueT
<'_>>, dtype:
ArrowDataType
) -> Self
Source
§
fn
from_zeroable_vec
( v:
Vec
<Self::
ZeroableValueT
<'_>>, dtype:
ArrowDataType
, ) -> Self