#[repr(C)]pub struct _tagEOS_Connect_UnlinkAccountCallbackInfo {
pub ResultCode: EOS_EResult,
pub ClientData: *mut c_void,
pub LocalUserId: EOS_ProductUserId,
}Expand description
Output parameters for the EOS_Connect_UnlinkAccount Function.
Fields§
§ResultCode: EOS_EResultThe EOS_EResult code for the operation. EOS_Success indicates that the operation succeeded; other codes indicate errors.
ClientData: *mut c_voidContext that was passed into EOS_Connect_UnlinkAccount.
LocalUserId: EOS_ProductUserIdThe product user that was subject for the unlinking operation.
On a successful operation, the local authentication session for the product user will have been invalidated. As such, the LocalUserId value will no longer be valid in any context unless the user is logged into it again.
Trait Implementations§
Source§impl Clone for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl Clone for _tagEOS_Connect_UnlinkAccountCallbackInfo
Source§fn clone(&self) -> _tagEOS_Connect_UnlinkAccountCallbackInfo
fn clone(&self) -> _tagEOS_Connect_UnlinkAccountCallbackInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _tagEOS_Connect_UnlinkAccountCallbackInfo
Auto Trait Implementations§
impl Freeze for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl RefUnwindSafe for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl !Send for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl !Sync for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl Unpin for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl UnsafeUnpin for _tagEOS_Connect_UnlinkAccountCallbackInfo
impl UnwindSafe for _tagEOS_Connect_UnlinkAccountCallbackInfo
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