[][src]Enum jni_bindgen_reflection::field::BasicType

pub enum BasicType<'a> {
    Byte,
    Char,
    Double,
    Float,
    Int,
    Long,
    Class(Id<'a>),
    Short,
    Boolean,
    Void,
}

Variants

Byte
Char
Double
Float
Int
Long
Class(Id<'a>)
Short
Boolean
Void

Trait Implementations

impl<'a> Clone for BasicType<'a>[src]

impl<'a> Copy for BasicType<'a>[src]

impl<'a> Debug for BasicType<'a>[src]

impl<'a> Eq for BasicType<'a>[src]

impl<'a> Hash for BasicType<'a>[src]

impl<'a> Ord for BasicType<'a>[src]

impl<'a> PartialEq<BasicType<'a>> for BasicType<'a>[src]

impl<'a> PartialOrd<BasicType<'a>> for BasicType<'a>[src]

impl<'a> StructuralEq for BasicType<'a>[src]

impl<'a> StructuralPartialEq for BasicType<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for BasicType<'a>

impl<'a> Send for BasicType<'a>

impl<'a> Sync for BasicType<'a>

impl<'a> Unpin for BasicType<'a>

impl<'a> UnwindSafe for BasicType<'a>

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, 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.