[][src]Struct peroxide::structure::dataframe::Scalar

pub struct Scalar {
    pub value: DTypeValue,
    pub dtype: DType,
}

Generic Scalar

Fields

value: DTypeValuedtype: DType

Implementations

impl Scalar[src]

pub fn to_series(self) -> Series[src]

Scalar to length 1 Series

pub fn to_string(self) -> String[src]

Trait Implementations

impl Clone for Scalar[src]

impl Debug for Scalar[src]

impl Display for Scalar[src]

impl PartialEq<Scalar> for Scalar[src]

impl Printable for Scalar[src]

impl StructuralPartialEq for Scalar[src]

impl TypedScalar<String> for Scalar[src]

impl TypedScalar<bool> for Scalar[src]

impl TypedScalar<char> for Scalar[src]

impl TypedScalar<f32> for Scalar[src]

impl TypedScalar<f64> for Scalar[src]

impl TypedScalar<i16> for Scalar[src]

impl TypedScalar<i32> for Scalar[src]

impl TypedScalar<i64> for Scalar[src]

impl TypedScalar<i8> for Scalar[src]

impl TypedScalar<isize> for Scalar[src]

impl TypedScalar<u16> for Scalar[src]

impl TypedScalar<u32> for Scalar[src]

impl TypedScalar<u64> for Scalar[src]

impl TypedScalar<u8> for Scalar[src]

impl TypedScalar<usize> for Scalar[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,