#[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: CCallbackBase§m_hAPICall: SteamAPICall_t§m_pObj: *mut T§m_Func: CCallResult_func_t<P>§_phantom_0: PhantomData<UnsafeCell<T>>§_phantom_1: PhantomData<UnsafeCell<P>>Trait Implementations§
Auto Trait Implementations§
impl<T, P> Freeze for CCallResult<T, P>
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>
impl<T, P> UnwindSafe for CCallResult<T, P>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more