Struct tauri_utils::config::IosConfig
source · pub struct IosConfig {
pub development_team: Option<String>,
}
Expand description
General configuration for the iOS target.
Fields§
§development_team: Option<String>
The development team. This value is required for iOS development because code signing is enforced.
The APPLE_DEVELOPMENT_TEAM
environment variable can be set to overwrite it.
Trait Implementations§
source§impl<'de> Deserialize<'de> for IosConfig
impl<'de> Deserialize<'de> for IosConfig
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 PartialEq for IosConfig
impl PartialEq for IosConfig
impl Eq for IosConfig
impl StructuralEq for IosConfig
impl StructuralPartialEq for IosConfig
Auto Trait Implementations§
impl RefUnwindSafe for IosConfig
impl Send for IosConfig
impl Sync for IosConfig
impl Unpin for IosConfig
impl UnwindSafe for IosConfig
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.