Struct dinghy_lib::config::PlatformConfiguration
source · pub struct PlatformConfiguration {
pub deb_multiarch: Option<String>,
pub env: Option<HashMap<String, String>>,
pub overlays: Option<HashMap<String, OverlayConfiguration>>,
pub rustc_triple: Option<String>,
pub sysroot: Option<String>,
pub toolchain: Option<String>,
}
Fields
deb_multiarch: Option<String>
env: Option<HashMap<String, String>>
overlays: Option<HashMap<String, OverlayConfiguration>>
rustc_triple: Option<String>
sysroot: Option<String>
toolchain: Option<String>
Implementations
Trait Implementations
sourceimpl Clone for PlatformConfiguration
impl Clone for PlatformConfiguration
sourcefn clone(&self) -> PlatformConfiguration
fn clone(&self) -> PlatformConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PlatformConfiguration
impl Debug for PlatformConfiguration
sourceimpl Default for PlatformConfiguration
impl Default for PlatformConfiguration
sourcefn default() -> PlatformConfiguration
fn default() -> PlatformConfiguration
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PlatformConfiguration
impl<'de> Deserialize<'de> for PlatformConfiguration
sourcefn 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
sourceimpl Serialize for PlatformConfiguration
impl Serialize for PlatformConfiguration
Auto Trait Implementations
impl RefUnwindSafe for PlatformConfiguration
impl Send for PlatformConfiguration
impl Sync for PlatformConfiguration
impl Unpin for PlatformConfiguration
impl UnwindSafe for PlatformConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more