polars_arrow::array

Struct View

Source
#[repr(C)]
pub struct View { pub length: u32, pub prefix: u32, pub buffer_idx: u32, pub offset: u32, }
Expand description

A reference to a set of bytes.

If length <= 12, these bytes are inlined over the prefix, buffer_idx and offset fields. If length > 12, these fields specify a slice of a buffer.

Fields§

§length: u32

The length of the string/bytes.

§prefix: u32

First 4 bytes of string/bytes data.

§buffer_idx: u32

The buffer index.

§offset: u32

The offset into the buffer.

Implementations§

Source§

impl View

Source

pub const MAX_INLINE_SIZE: u32 = 12u32

Source

pub fn as_u128(self) -> u128

Source

pub unsafe fn new_inline_unchecked(bytes: &[u8]) -> Self

Create a new inline view without verifying the length

§Safety

It needs to hold that bytes.len() <= View::MAX_INLINE_SIZE.

Source

pub fn new_inline(bytes: &[u8]) -> Self

Create a new inline view

§Panics

Panics if the bytes.len() > View::MAX_INLINE_SIZE.

Source

pub unsafe fn new_noninline_unchecked( bytes: &[u8], buffer_idx: u32, offset: u32, ) -> Self

Create a new inline view

§Safety

It needs to hold that bytes.len() > View::MAX_INLINE_SIZE.

Source

pub fn new_from_bytes(bytes: &[u8], buffer_idx: u32, offset: u32) -> Self

Source

pub unsafe fn get_slice_unchecked<'a>( &'a self, buffers: &'a [Buffer<u8>], ) -> &'a [u8]

Constructs a byteslice from this view.

§Safety

Assumes that this view is valid for the given buffers.

Source

pub fn extend_with_inlinable_strided( views: &mut Vec<Self>, src: &[u8], width: u8, )

Extend a Vec<View> with inline views slices of src with width.

This tries to use SIMD to optimize the copying and can be massively faster than doing a views.extend(src.chunks_exact(width).map(View::new_inline)).

§Panics

This function panics if src.len() is not divisible by width, width > View::MAX_INLINE_SIZE or width == 0.

Trait Implementations§

Source§

impl Add for View

Source§

type Output = View

The resulting type after applying the + operator.
Source§

fn add(self, _rhs: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Clone for View

Source§

fn clone(&self) -> View

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for View

Source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for View

Source§

fn default() -> View

Returns the “default value” for a type. Read more
Source§

impl Display for View

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Bytes16Alignment4> for View

Source§

fn from(value: Bytes16Alignment4) -> Self

Converts to this type from the input type.
Source§

impl From<View> for Bytes16Alignment4

Source§

fn from(value: View) -> Self

Converts to this type from the input type.
Source§

impl From<View> for u128

Source§

fn from(value: View) -> Self

Converts to this type from the input type.
Source§

impl From<u128> for View

Source§

fn from(value: u128) -> Self

Converts to this type from the input type.
Source§

impl IsNull for View

Source§

const HAS_NULLS: bool = false

Source§

type Inner = View

Source§

fn is_null(&self) -> bool

Source§

fn unwrap_inner(self) -> Self::Inner

Source§

impl MinMax for View

Source§

fn nan_min_lt(&self, _other: &Self) -> bool

Source§

fn nan_max_lt(&self, _other: &Self) -> bool

Source§

fn min_propagate_nan(self, other: Self) -> Self

Source§

fn max_propagate_nan(self, other: Self) -> Self

Source§

fn min_ignore_nan(self, other: Self) -> Self

Source§

fn max_ignore_nan(self, other: Self) -> Self

Source§

impl NativeType for View

Source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt128

The corresponding variant of PrimitiveType.
Source§

type Bytes = [u8; 16]

Type denoting its representation as bytes. This is [u8; N] where N = size_of::<T>.
Source§

type AlignedBytes = Bytes16Alignment4

Type denoting its representation as aligned bytes. Read more
Source§

fn to_le_bytes(&self) -> Self::Bytes

To bytes in little endian
Source§

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian
Source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian
Source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian
Source§

impl PartialEq for View

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TotalEq for View

Source§

fn tot_eq(&self, other: &Self) -> bool

Source§

fn tot_ne(&self, other: &Self) -> bool

Source§

impl TotalOrd for View

Source§

fn tot_cmp(&self, _other: &Self) -> Ordering

Source§

fn tot_lt(&self, other: &Self) -> bool

Source§

fn tot_gt(&self, other: &Self) -> bool

Source§

fn tot_le(&self, other: &Self) -> bool

Source§

fn tot_ge(&self, other: &Self) -> bool

Source§

impl Zero for View

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zeroable for View

Source§

fn zeroed() -> Self

Source§

impl AlignedBytesCast<Bytes16Alignment4> for View

Source§

impl Copy for View

Source§

impl Pod for View

Auto Trait Implementations§

§

impl Freeze for View

§

impl RefUnwindSafe for View

§

impl Send for View

§

impl Sync for View

§

impl Unpin for View

§

impl UnwindSafe for View

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
Source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> AnyBitPattern for T
where T: Pod,

Source§

impl<T> NoUninit for T
where T: Pod,