polars_arrow::types

Struct i256

Source
#[repr(C)]
pub struct i256(pub I256);
Expand description

Physical representation of a decimal

Tuple Fields§

§0: I256

Implementations§

Source§

impl i256

Source

pub fn from_words(hi: i128, lo: i128) -> Self

Returns a new i256 from two i128.

Trait Implementations§

Source§

impl Clone for i256

Source§

fn clone(&self) -> i256

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 i256

Source§

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

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

impl Default for i256

Source§

fn default() -> i256

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

impl Display for i256

Source§

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

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

impl From<Bytes32Alignment16> for i256

Source§

fn from(value: Bytes32Alignment16) -> Self

Converts to this type from the input type.
Source§

impl From<i256> for Bytes32Alignment16

Source§

fn from(value: i256) -> Self

Converts to this type from the input type.
Source§

impl Hash for i256

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl IsNull for i256

Source§

const HAS_NULLS: bool = false

Source§

type Inner = i256

Source§

fn is_null(&self) -> bool

Source§

fn unwrap_inner(self) -> Self::Inner

Source§

impl MinMax for i256

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 i256

Source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

The corresponding variant of PrimitiveType.
Source§

type Bytes = [u8; 32]

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

type AlignedBytes = Bytes32Alignment16

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_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian
Source§

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

From bytes in little endian
Source§

impl Neg for i256

Source§

type Output = i256

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Ord for i256

Source§

fn cmp(&self, other: &i256) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for i256

Source§

fn eq(&self, other: &i256) -> 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 PartialOrd for i256

Source§

fn partial_cmp(&self, other: &i256) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Simd for i256

Source§

type Simd = i256x8

The SIMD type associated with this trait. This type supports SIMD operations
Source§

impl TotalEq for i256

Source§

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

Source§

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

Source§

impl TotalOrd for i256

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 Zeroable for i256

Source§

fn zeroed() -> Self

Source§

impl AlignedBytesCast<Bytes32Alignment16> for i256

Source§

impl Copy for i256

Source§

impl Eq for i256

Source§

impl Pod for i256

Source§

impl StructuralPartialEq for i256

Auto Trait Implementations§

§

impl Freeze for i256

§

impl RefUnwindSafe for i256

§

impl Send for i256

§

impl Sync for i256

§

impl Unpin for i256

§

impl UnwindSafe for i256

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<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

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

Source§

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

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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,