pub type InheritableVecStringOrBool = InheritableField<VecStringOrBool>;

Aliased Type§

enum InheritableVecStringOrBool {
    Value(VecStringOrBool),
    Inherit(TomlInheritedField),
}

Variants§

§

Value(VecStringOrBool)

The type that 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 InheritableVecStringOrBool

source§

fn deserialize<D>(d: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more