[][src]Struct gc_adapter::UnsignedAxis

pub struct UnsignedAxis(_);

An unsigned axis, representing a positive or zero value.

Implementations

impl UnsignedAxis[src]

pub fn from_raw(val: u8) -> Self[src]

pub fn raw(&self) -> u8[src]

pub fn float(&self) -> f32[src]

Return axis as an f32 in the range of [-1.0, 1.0]

pub fn double(&self) -> f64[src]

Return axis as an f64 in the range of [-1.0, 1.0]

Note: You likely do not want the additional precision.

Trait Implementations

impl BinRead for UnsignedAxis[src]

type Args = ()

The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more

impl Debug for UnsignedAxis[src]

impl Default for UnsignedAxis[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, 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.