pub struct TargetCfgConfig {
pub runner: OptValue<PathAndArgs>,
pub rustflags: OptValue<StringList>,
pub other: BTreeMap<String, Value>,
}
Expand description
Config definition of a [target.'cfg(…)']
table.
This is a subset of TargetConfig
.
Fields
runner: OptValue<PathAndArgs>
rustflags: OptValue<StringList>
other: BTreeMap<String, Value>
Trait Implementations
sourceimpl Debug for TargetCfgConfig
impl Debug for TargetCfgConfig
sourceimpl<'de> Deserialize<'de> for TargetCfgConfig
impl<'de> Deserialize<'de> for TargetCfgConfig
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
Auto Trait Implementations
impl RefUnwindSafe for TargetCfgConfig
impl Send for TargetCfgConfig
impl Sync for TargetCfgConfig
impl Unpin for TargetCfgConfig
impl UnwindSafe for TargetCfgConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more