Enum pyo3::buffer::ElementType[][src]

pub enum ElementType {
    SignedInteger {
        bytes: usize,
    },
    UnsignedInteger {
        bytes: usize,
    },
    Bool,
    Float {
        bytes: usize,
    },
    Unknown,
}

Variants

Fields of SignedInteger

Fields of UnsignedInteger

Fields of Float

Methods

impl ElementType
[src]

Trait Implementations

impl Copy for ElementType
[src]

impl Clone for ElementType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for ElementType
[src]

impl PartialEq for ElementType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for ElementType

impl Sync for ElementType