pub enum CrossCompileAssistance {
NoAssistance,
HelpText(String),
Configuration {
cargo_env: Vec<(OsString, OsString)>,
},
}Variants§
NoAssistance
No specific assistance available for the current host and target platform combination.
HelpText(String)
A human-readable help text with instructions on how to setup the host machine for cross-compilation.
Configuration
Required configuration to cross-compile to the target platform.
Auto Trait Implementations§
impl Freeze for CrossCompileAssistance
impl RefUnwindSafe for CrossCompileAssistance
impl Send for CrossCompileAssistance
impl Sync for CrossCompileAssistance
impl Unpin for CrossCompileAssistance
impl UnwindSafe for CrossCompileAssistance
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