Struct ha::Arg[][src]

pub struct Arg<T>(pub T);

Used to disambiguate impls for Rust’s type checker.

Trait Implementations

impl<T: Clone> Clone for Arg<T>[src]

impl<T: Copy> Copy for Arg<T>[src]

impl<T> Ho<Arg<T>> for f64[src]

type Fun = Func<T, f64>

The function type.

impl<T> Ho<Arg<T>> for f32[src]

type Fun = Func<T, f32>

The function type.

impl<T> Ho<Arg<T>> for i64[src]

type Fun = Func<T, i64>

The function type.

impl<T> Ho<Arg<T>> for isize[src]

type Fun = Func<T, isize>

The function type.

impl<T> Ho<Arg<T>> for u8[src]

type Fun = Func<T, u8>

The function type.

impl<T> Ho<Arg<T>> for u16[src]

type Fun = Func<T, u16>

The function type.

impl<T> Ho<Arg<T>> for u32[src]

type Fun = Func<T, u32>

The function type.

impl<T> Ho<Arg<T>> for u64[src]

type Fun = Func<T, u64>

The function type.

impl<T> Ho<Arg<T>> for usize[src]

type Fun = Func<T, usize>

The function type.

impl<T> Ho<Arg<T>> for i8[src]

type Fun = Func<T, i8>

The function type.

impl<T> Ho<Arg<T>> for i16[src]

type Fun = Func<T, i16>

The function type.

impl<T> Ho<Arg<T>> for i32[src]

type Fun = Func<T, i32>

The function type.

Auto Trait Implementations

impl<T> RefUnwindSafe for Arg<T> where
    T: RefUnwindSafe

impl<T> Send for Arg<T> where
    T: Send

impl<T> Sync for Arg<T> where
    T: Sync

impl<T> Unpin for Arg<T> where
    T: Unpin

impl<T> UnwindSafe for Arg<T> where
    T: UnwindSafe

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> HMap<U> for T where
    U: Call<T>, 
[src]

type Fun = <U as Ho<Arg<T>>>::Fun

The out type.

impl<T> Ho<()> for T where
    T: Clone
[src]

type Fun = T

The function type.

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.