Struct steamworks_sys::CCallResult[][src]

#[repr(C)]pub struct CCallResult<T, P> {
    pub _base: CCallbackBase,
    pub m_hAPICall: SteamAPICall_t,
    pub m_pObj: *mut T,
    pub m_Func: CCallResult_func_t<P>,
    pub _phantom_0: PhantomData<UnsafeCell<T>>,
    pub _phantom_1: PhantomData<UnsafeCell<P>>,
}

Fields

_base: CCallbackBasem_hAPICall: SteamAPICall_tm_pObj: *mut Tm_Func: CCallResult_func_t<P>_phantom_0: PhantomData<UnsafeCell<T>>_phantom_1: PhantomData<UnsafeCell<P>>

Trait Implementations

impl<T: Debug, P: Debug> Debug for CCallResult<T, P>[src]

Auto Trait Implementations

impl<T, P> !RefUnwindSafe for CCallResult<T, P>

impl<T, P> !Send for CCallResult<T, P>

impl<T, P> !Sync for CCallResult<T, P>

impl<T, P> Unpin for CCallResult<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> UnwindSafe for CCallResult<T, P> where
    P: UnwindSafe,
    T: RefUnwindSafe + 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> 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.