pub struct IapSettings {
pub access_settings: Option<AccessSettings>,
pub application_settings: Option<ApplicationSettings>,
pub name: Option<String>,
}Expand description
The IAP configurable settings.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get iap settings (response)
- update iap settings (request|response)
Fields§
§access_settings: Option<AccessSettings>Optional. Top level wrapper for all access related setting in IAP
application_settings: Option<ApplicationSettings>Optional. Top level wrapper for all application related settings in IAP
name: Option<String>Required. The resource name of the IAP protected resource.
Trait Implementations§
Source§impl Clone for IapSettings
impl Clone for IapSettings
Source§fn clone(&self) -> IapSettings
fn clone(&self) -> IapSettings
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 moreSource§impl Debug for IapSettings
impl Debug for IapSettings
Source§impl Default for IapSettings
impl Default for IapSettings
Source§fn default() -> IapSettings
fn default() -> IapSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IapSettings
impl<'de> Deserialize<'de> for IapSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for IapSettings
impl Serialize for IapSettings
impl RequestValue for IapSettings
impl ResponseResult for IapSettings
Auto Trait Implementations§
impl Freeze for IapSettings
impl RefUnwindSafe for IapSettings
impl Send for IapSettings
impl Sync for IapSettings
impl Unpin for IapSettings
impl UnwindSafe for IapSettings
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