pub struct Project {
pub name: String,
pub goal: Option<String>,
pub main_language: Option<String>,
pub approach: Option<String>,
pub version: Option<String>,
pub license: Option<String>,
}Expand description
Core project identity — the one block every .faf file has.
Fields§
§name: StringThe project’s name.
goal: Option<String>One sentence on what the project is for — the seed for the 6 W’s.
main_language: Option<String>Primary implementation language (e.g. "Rust").
approach: Option<String>How the project is built or approached (architecture, methodology).
version: Option<String>The project’s own version string.
license: Option<String>SPDX license identifier (e.g. "MIT").
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
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more