pub type InheritableStringOrBool = InheritableField<StringOrBool>;
Aliased Type§
pub enum InheritableStringOrBool {
Value(StringOrBool),
Inherit(TomlInheritedField),
}
Variants§
Value(StringOrBool)
The type that is used when not inheriting from a workspace.
Inherit(TomlInheritedField)
The type when inheriting from a workspace.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InheritableStringOrBool
impl<'de> Deserialize<'de> for InheritableStringOrBool
Source§fn deserialize<D>(d: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.