pub struct PlatformSettingsData {
pub enabled: bool,
pub settings: Vec<(String, String)>,
}Expand description
PlatformSettingsData is a sub class of the Unity engine since version 5.0.0f4.
Fields§
§enabled: bool§settings: Vec<(String, String)>Trait Implementations§
Source§impl Debug for PlatformSettingsData
impl Debug for PlatformSettingsData
Source§impl<'de> Deserialize<'de> for PlatformSettingsData
impl<'de> Deserialize<'de> for PlatformSettingsData
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
Auto Trait Implementations§
impl Freeze for PlatformSettingsData
impl RefUnwindSafe for PlatformSettingsData
impl Send for PlatformSettingsData
impl Sync for PlatformSettingsData
impl Unpin for PlatformSettingsData
impl UnwindSafe for PlatformSettingsData
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