pub struct Project {
pub authors: Option<Vec<String>>,
pub name: String,
pub organization: Option<String>,
pub license: String,
pub entry: String,
pub implicit_std: Option<bool>,
pub forc_version: Option<Version>,
}
Fields§
§name: String
§organization: Option<String>
§license: String
§entry: String
§implicit_std: Option<bool>
§forc_version: Option<Version>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
source§fn 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