polars_ops/chunked_array/binary/
mod.rs1mod get;
2mod namespace;
3mod slice;
4
5pub use get::bin_get;
6pub use namespace::*;
7use polars_core::prelude::*;
8
9pub trait AsBinary {
10 fn as_binary(&self) -> &BinaryChunked;
11}
12
13impl AsBinary for BinaryChunked {
14 fn as_binary(&self) -> &BinaryChunked {
15 self
16 }
17}