pub struct IOSContext {
pub config: Config,
pub products: HashMap<String, PathBuf>,
pub universal_binary_path: Option<PathBuf>,
}Expand description
Context that gets passed through each task.
Fields§
§config: ConfigThe platform-independent configuration that gets passed to each command.
products: HashMap<String, PathBuf>A map between iOS architectures and the path to the product for each.
universal_binary_path: Option<PathBuf>This will contain a path to the universal binary which is basically a bundle of architecture-specific static libraries.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IOSContext
impl RefUnwindSafe for IOSContext
impl Send for IOSContext
impl Sync for IOSContext
impl Unpin for IOSContext
impl UnwindSafe for IOSContext
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