[][src]Enum fbxcel::low::v7400::AttributeType

pub enum AttributeType {
    Bool,
    I16,
    I32,
    I64,
    F32,
    F64,
    ArrBool,
    ArrI32,
    ArrI64,
    ArrF32,
    ArrF64,
    Binary,
    String,
}

Node attribute type.

Variants

Bool

Single bool.

I16

Single i16.

I32

Single i32.

I64

Single i64.

F32

Single f32.

F64

Single f64.

ArrBool

Array of bool.

ArrI32

Array of i32.

ArrI64

Array of i64.

ArrF32

Array of f32.

ArrF64

Array of f64.

Binary

Binary.

String

UTF-8 string.

Trait Implementations

impl Copy for AttributeType[src]

impl PartialEq<AttributeType> for AttributeType[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for AttributeType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for AttributeType[src]

impl Debug for AttributeType[src]

impl Hash for AttributeType[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.