#[repr(C)]pub struct _tagEOS_Ecom_QueryEntitlementsOptions {
pub ApiVersion: i32,
pub LocalUserId: EOS_EpicAccountId,
pub EntitlementNames: *mut EOS_Ecom_EntitlementName,
pub EntitlementNameCount: u32,
pub bIncludeRedeemed: EOS_Bool,
pub OverrideCatalogNamespace: *const c_char,
}Expand description
Input parameters for the EOS_Ecom_QueryEntitlements function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ECOM_QUERYENTITLEMENTS_API_LATEST.
LocalUserId: EOS_EpicAccountIdThe Epic Account ID of the local user whose Entitlements you want to retrieve
EntitlementNames: *mut EOS_Ecom_EntitlementNameAn array of Entitlement Names that you want to check
EntitlementNameCount: u32The number of Entitlement Names included in the array, up to EOS_ECOM_QUERYENTITLEMENTS_MAX_ENTITLEMENT_IDS; use zero to request all Entitlements associated with the user’s Epic Online Services account.
bIncludeRedeemed: EOS_BoolIf true, Entitlements that have been redeemed will be included in the results.
OverrideCatalogNamespace: *const c_charIf not provided then the SandboxId is used as the catalog namespace
Trait Implementations§
Source§impl Clone for _tagEOS_Ecom_QueryEntitlementsOptions
impl Clone for _tagEOS_Ecom_QueryEntitlementsOptions
Source§fn clone(&self) -> _tagEOS_Ecom_QueryEntitlementsOptions
fn clone(&self) -> _tagEOS_Ecom_QueryEntitlementsOptions
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_Ecom_QueryEntitlementsOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_Ecom_QueryEntitlementsOptions
impl RefUnwindSafe for _tagEOS_Ecom_QueryEntitlementsOptions
impl !Send for _tagEOS_Ecom_QueryEntitlementsOptions
impl !Sync for _tagEOS_Ecom_QueryEntitlementsOptions
impl Unpin for _tagEOS_Ecom_QueryEntitlementsOptions
impl UnsafeUnpin for _tagEOS_Ecom_QueryEntitlementsOptions
impl UnwindSafe for _tagEOS_Ecom_QueryEntitlementsOptions
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